blob: 2067942c22f0152091060014dc81888f57c961c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 */
|