Untested radiotap support.

This commit is contained in:
pdw
2011-10-03 21:46:35 +00:00
parent 067bc0d96f
commit a85b2c76cd
3 changed files with 38 additions and 5 deletions

10
ether.h
View File

@@ -20,4 +20,14 @@ struct vlan_8021q_header {
u_int16_t ether_type;
};
/*
* http://www.gsp.com/cgi-bin/man.cgi?section=9&topic=ieee80211_radiotap
*/
struct radiotap_header {
u_int8_t it_version; /* set to 0 */
u_int8_t it_pad;
u_int16_t it_len; /* entire length */
u_int32_t it_present; /* fields present */
};
#endif