Changeset 904:a44f8e3a954c
- Timestamp:
- 09/10/08 15:18:29
(4 months ago)
- Author:
- Phil <phil@secdev.org>
- Message:
Fixed radiotap len: from host order to little endian (ticket #132)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r903 |
r904 |
|
| 114 | 114 | fields_desc = [ ByteField('version', 0), |
|---|
| 115 | 115 | ByteField('pad', 0), |
|---|
| 116 | | FieldLenField('len', None, 'notdecoded', '@H', adjust=lambda pkt,x:x+8), |
|---|
| | 116 | FieldLenField('len', None, 'notdecoded', '<H', adjust=lambda pkt,x:x+8), |
|---|
| 117 | 117 | FlagsField('present', None, -32, ['TSFT','Flags','Rate','Channel','FHSS','dBm_AntSignal', |
|---|
| 118 | 118 | 'dBm_AntNoise','Lock_Quality','TX_Attenuation','dB_TX_Attenuation', |
|---|