2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2009, 2010 Daniel Borkmann.
5 * Subject to the GPL, version 2.
8 #ifndef DISSECTOR_ETH_H
9 #define DISSECTOR_ETH_H
12 #include "proto_struct.h"
16 extern struct hash_table eth_lay2
;
17 extern struct hash_table eth_lay3
;
18 extern struct hash_table eth_lay4
;
20 extern void dissector_init_ethernet(int fnttype
);
21 extern void dissector_cleanup_ethernet(void);
23 extern char *lookup_vendor(unsigned int id
);
24 extern char *lookup_port_udp(unsigned int id
);
25 extern char *lookup_port_tcp(unsigned int id
);
26 extern char *lookup_ether_type(unsigned int id
);
28 extern struct protocol ethernet_ops
;
29 extern struct protocol none_ops
;
31 static inline struct protocol
*dissector_get_ethernet_entry_point(void)
36 static inline struct protocol
*dissector_get_ethernet_exit_point(void)
41 #endif /* DISSECTOR_ETH_H */