Changeset 1023ff4
- Timestamp:
- 08/21/06 23:23:57 (15 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- c0fdf31
- Parents:
- 8e6ac85
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/libtrace.h.in
r3a169d7 r1023ff4 430 430 /** 802.11 header */ 431 431 typedef struct libtrace_80211_t { 432 #ifdef BYTE_ORDER == LITTLE_ENDIAN 432 433 LT_BITFIELD32 protocol:2; 433 434 LT_BITFIELD32 type:2; 434 435 LT_BITFIELD32 subtype:4; 435 LT_BITFIELD32 to_ds:1; /**< Packet to Distribution Service */ 436 #else 437 LT_BITFIELD32 subtype:4; 438 LT_BITFIELD32 type:2; 439 LT_BITFIELD32 protocol:2; 440 #endif 441 LT_BITFIELD32 to_ds:1; /**< Packet to Distribution Service */ 436 442 LT_BITFIELD32 from_ds:1; /**< Packet from Distribution Service */ 437 443 LT_BITFIELD32 more_frag:1; /**< Packet has more fragments */ 438 LT_BITFIELD32 retry:1; 444 LT_BITFIELD32 retry:1; /**< Packet is a retry */ 439 445 LT_BITFIELD32 power:1; 440 446 LT_BITFIELD32 more_data:1; 441 447 LT_BITFIELD32 wep:1; 442 448 LT_BITFIELD32 order:1; 449 #else 450 LT_BITFIELD32 order:1; 451 LT_BITFIELD32 wep:1; 452 LT_BITFIELD32 more_data:1; 453 LT_BITFIELD32 power:1; 454 LT_BITFIELD32 retry:1; /**< Packet is a retry */ 455 LT_BITFIELD32 more_frag:1; /**< Packet has more fragments */ 456 LT_BITFIELD32 from_ds:1; /**< Packet from Distribution Service */ 457 LT_BITFIELD32 to_ds:1; /**< Packet to Distribution Service */ 458 #endif 443 459 uint16_t duration; 444 460 uint8_t mac1[6];
Note: See TracChangeset
for help on using the changeset viewer.