nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #ifndef HAVE_GREYLIST_H
2 #define HAVE_GREYLIST_H
3  
4 #include "mac_addr.h"
5  
6 //Loads or appends to list of mac addresses.
7 //to change list type, use filename NULL
8 void load_greylist(char isblacklist, char *filename);
9  
10 char is_blacklisted(struct ether_addr mac);
11  
12 char is_whitelisted(struct ether_addr mac);
13  
14 #endif