Merge branch 'master' of git://github.com/markusa/netsniff-ng
[netsniff-ng-old.git] / src / dissector_80211.h
bloba5b76108afd64193f493e50a4b49efb9f1bf5bcf
1 /*
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.
6 */
8 #ifndef DISSECTOR_80211_H
9 #define DISSECTOR_80211_H
11 #include "hash.h"
12 #include "proto.h"
13 #include "protos.h"
14 #include "tprintf.h"
15 #include "xsys.h"
16 #include "oui.h"
18 extern struct hash_table ieee80211_lay2;
20 extern void dissector_init_ieee80211(int fnttype);
21 extern void dissector_cleanup_ieee80211(void);
23 static inline struct protocol *dissector_get_ieee80211_entry_point(void)
25 return &none_ops;
28 static inline struct protocol *dissector_get_ieee80211_exit_point(void)
30 return &none_ops;
33 #endif /* DISSECTOR_80211_H */