blob: 387f1989d8d810d11aeef7e8b95c52cd6c406b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* netsniff-ng - the packet sniffing beast
* Copyright 2014 Tobias Klauser.
* Subject to the GPL, version 2.
*/
#include "dissector.h"
#include "dissector_netlink.h"
#ifdef HAVE_DISSECTOR_PROTOS
static inline void dissector_init_entry(int type)
{
dissector_set_print_type(&nlmsg_ops, type);
}
static inline void dissector_init_exit(int type)
{
dissector_set_print_type(&none_ops, type);
}
#else
static inline void dissector_init_entry(int type __maybe_unused) {}
static inline void dissector_init_exit(int type __maybe_unused) {}
#endif
void dissector_init_netlink(int fnttype)
{
dissector_init_entry(fnttype);
dissector_init_exit(fnttype);
}
void dissector_cleanup_netlink(void)
{
}
|