00001 #ifndef HLBR_MACFILTER_H 00002 #define HLBR_MACFILTER_H 00003 00004 #include "../config.h" 00005 #include "../engine/hlbr.h" 00006 #include "route.h" 00007 00008 00009 /*TODO: make this not so ethernet specific*/ 00010 00011 #define MAX_MACS 1024 00012 00013 typedef struct mac_rec{ 00014 unsigned char MAC[6]; 00015 int Interface; 00016 int Count; 00017 } MacRec; 00018 00019 int InitMacFilter(); 00020 00021 00022 #endif