/* * netsniff-ng - the packet sniffing beast * Copyright 2009, 2010 Daniel Borkmann. * Subject to the GPL, version 2. */ #ifndef DISSECTOR_ETH_H #define DISSECTOR_ETH_H #include "hash.h" #include "protos.h" extern struct hash_table eth_lay2; extern struct hash_table eth_lay3; extern void dissector_init_ethernet(int fnttype); extern void dissector_cleanup_ethernet(void); static inline struct protocol *dissector_get_ethernet_entry_point(void) { return ðernet_ops; } static inline struct protocol *dissector_get_ethernet_exit_point(void) { return &none_ops; } #endif /* DISSECTOR_ETH_H */ git.cgi/'>cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat
-rw-r--r--drivers/net/macvtap_main.c18
-rw-r--r--drivers/net/tap.c332
-rw-r--r--drivers/vhost/net.c3
-rw-r--r--include/linux/if_macvlan.h17
-rw-r--r--include/linux/if_macvtap.h10
-rw-r--r--include/linux/if_tap.h23
6 files changed, 202 insertions, 201 deletions
diff --git a/drivers/net/macvtap_main.c b/drivers/net/macvtap_main.c