- Timestamp:
- 08/12/04 14:56:00 (18 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:
- 88a1679
- Parents:
- 4a988af
- Location:
- lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/trace.c
rdfef05d r6e60e50 61 61 #include <sys/ioctl.h> 62 62 63 #include <stdint.h> 63 #ifdef HAVE_STDINT_H 64 # include <stdint.h> 65 #endif 66 64 67 #ifdef HAVE_STDDEF_H 65 68 #include <stddef.h> -
lib/wag.h
ra79ddbe r6e60e50 37 37 uint32_t type; 38 38 uint32_t seq_num; 39 uint8_t payload[ ];39 uint8_t payload[1]; 40 40 }; 41 41 … … 44 44 uint32_t rx_rssi; 45 45 uint32_t frame_length; 46 uint8_t data[ ];46 uint8_t data[1]; 47 47 }; 48 48 … … 65 65 uint16_t SeqCtl; 66 66 uint8_t mac4[6]; 67 uint8_t data[ ];67 uint8_t data[1]; 68 68 }; 69 69 70 70 struct ieee_802_11_payload { 71 71 uint16_t type; 72 uint8_t data[ ];72 uint8_t data[1]; 73 73 }; 74 74
Note: See TracChangeset
for help on using the changeset viewer.