diff options
Diffstat (limited to 'dissector_sll.h')
-rw-r--r-- | dissector_sll.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dissector_sll.h b/dissector_sll.h new file mode 100644 index 0000000..2067942 --- /dev/null +++ b/dissector_sll.h @@ -0,0 +1,18 @@ +/* + * netsniff-ng - the packet sniffing beast + * Subject to the GPL, version 2. + */ + +#ifndef DISSECTOR_SLL_H +#define DISSECTOR_SLL_H + +#include "hash.h" +#include "proto.h" + +extern void dissector_init_sll(int fnttype); +extern void dissector_cleanup_sll(void); + +extern struct protocol *dissector_get_sll_entry_point(void); +extern struct protocol *dissector_get_sll_exit_point(void); + +#endif /* DISSECTOR_SLL_H */ |