Skip to content
Snippets Groups Projects
Commit caf97d5c authored by Hauke Petersen's avatar Hauke Petersen
Browse files

drivers/netdev: add filter list to netdev strcut

parent fdadfe27
No related branches found
No related tags found
No related merge requests found
...@@ -54,6 +54,7 @@ extern "C" { ...@@ -54,6 +54,7 @@ extern "C" {
#include <sys/uio.h> #include <sys/uio.h>
#include "net/netstats.h" #include "net/netstats.h"
#include "net/l2filter.h"
#include "net/netopt.h" #include "net/netopt.h"
enum { enum {
...@@ -120,6 +121,9 @@ struct netdev { ...@@ -120,6 +121,9 @@ struct netdev {
#ifdef MODULE_NETSTATS_L2 #ifdef MODULE_NETSTATS_L2
netstats_t stats; /**< transceiver's statistics */ netstats_t stats; /**< transceiver's statistics */
#endif #endif
#ifdef MODULE_L2FILTER
l2filter_t filter[L2FILTER_LISTSIZE]; /**< link layer address filters */
#endif
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment