| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Make tcpdump indicate basic rates listed in beacons with an asterisk. | 2016-11-19 | 1 | -3/+5 | |
| | | | | | ok tb@ | ||||
| * | Make tcpdump show MCS stored in radiotap's rate field. | 2016-10-08 | 1 | -3/+8 | |
| | | | | | ok kettenis@ | ||||
| * | Make tcpdump print details about association requests in verbose mode. | 2016-09-02 | 1 | -17/+61 | |
| | | | | | | Refactor such that we can share some of the code for beacon printing. ok sthen@ | ||||
| * | Make tcpdump show details of beacon country elements in verbose mode only. | 2016-02-21 | 1 | -2/+3 | |
| | | | | | ok sthen@ | ||||
| * | Fix an infinite loop when printing a country element in a management | 2016-02-04 | 1 | -2/+4 | |
| | | | | | | | frame in case we hit channel Tx power limits we can't pretty-print. Also ensure we consume the last item in this list. ok sthen@ | ||||
| * | Make tcpdump show 802.11 control frames. | 2016-02-03 | 1 | -1/+84 | |
| | | | | | ok kettenis@, and help from David Vasek (thanks!) | ||||
| * | Make tcpdump show 802.11 QoS frames properly. | 2016-02-01 | 1 | -11/+35 | |
| | | | | | ok kettenis@ | ||||
| * | Remove wireless turbo mode support. It is a non-standard extension | 2016-01-12 | 1 | -3/+1 | |
| | | | | | | | which only worked with ath(4) devices from a decade ago. Diff tested on ath(4) hardware by me to verify that 11a/b modes still work. ok reyk deraadt chris sthen kettenis | ||||
| * | Don't use exp2f(), it breaks build on vax. Use a shift instead. | 2015-10-13 | 1 | -3/+2 | |
| | | | | | reported by deraadt@ | ||||
| * | Fix a copy-pasto: Check the correct bit for STBC beacon in HT OP element. | 2015-10-12 | 1 | -2/+2 | |
| | | | | | ok sthen@ | ||||
| * | Make tcpdump(1) print more information from the HT Capabilities element. | 2015-10-10 | 1 | -2/+83 | |
| | | | | | tweak + ok sthen@ | ||||
| * | In tcpdump, show 11n HTOP primary and secondary channel numbers for 40MHz BSS, | 2015-07-19 | 1 | -7/+21 | |
| | | | | | | instead of showing just the primary one and "above" or "below" for secondary. ok sthen | ||||
| * | Make tcpdump show HTOP elements in 11n management frames; ok sthen@ | 2015-07-18 | 1 | -1/+105 | |
| | | |||||
| * | Make tcpdump decode the country element in 802.11 mgmt frames. | 2015-07-17 | 1 | -3/+49 | |
| | | | | | much help and ok zhuk@, ok sthen@ for an earlier version | ||||
| * | Make tcpdump display BSS load information contained in 802.11 mgmt frames. | 2015-07-17 | 1 | -1/+9 | |
| | | | | | ok phessler sthen | ||||
| * | add missing ELEM_CHECK for csa printing, spotted by / ok stsp@ | 2015-07-16 | 1 | -1/+2 | |
| | | |||||
| * | Make tcpdump show 11n HT capabilities in 802.11 management frames. | 2015-07-16 | 1 | -1/+83 | |
| | | | | | ok deraadt@ zhuk@ sthen@ | ||||
| * | Unbreak the tree. Remove use of removed ieee80211 element IDs from hostapd | 2015-07-15 | 1 | -5/+5 | |
| | | | | | | and from tcpdump. Pointed out by James Hartley. | ||||
| * | Teach the 802.11 printer about Channel Switch Announcements (advertised by | 2015-04-08 | 1 | -1/+5 | |
| | | | | | | | | | | an AP in beacons in the run-up to a channel switch, either for radar avoidance, or for frequency management). ok stsp@ We don't support these in net80211 yet (as pointed out by stsp a few days ago) but it's useful to at least have a way to debug why your connection is getting knocked down! | ||||
| * | Replace <sys/param.h> with <limits.h> and other less dirty headers where | 2015-01-16 | 1 | -2/+1 | |
| | | | | | | | | | | possible. Annotate <sys/param.h> lines with their current reasons. Switch to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where sensible to avoid pulling in the pollution. These are the files confirmed through binary verification. ok guenther, millert, doug (helped with the verification protocol) | ||||
| * | No use for <netinet/in_systm.h> nor <netinet/tcpip.h>. | 2014-08-14 | 1 | -2/+1 | |
| | | |||||
| * | Fix tcpdump(8) display of logical link control data in IEEE802 frames. | 2014-07-20 | 1 | -2/+2 | |
| | | | | | | | The frame subtype field is in the first byte of frame control but tcpdump(8) was looking at the second byte to determine if this is a data frame. Patch by Nathanael Rensen, thanks! | ||||
| * | Dump some more flags and subtypes in tcpdump. Especially flags used in | 2013-01-17 | 1 | -11/+43 | |
| | | | | | power saving mode. OK giovanni@ | ||||
| * | Fix Segmentation fault for tcpdump when used in combination with | 2007-08-14 | 1 | -5/+5 | |
| | | | | | | | | | | | ``-v -y IEEE802_11'', and ``-v -y IEEE802_11_RADIO''. The snaplen was passed instead of the real packet size at some point, which caused tcpdump todo tcp checksum verifications on packets where it shouldn't. Diff from canacar@ and me, tested by canacar@, reyk@, and me. OK canacar@ reyk@ | ||||
| * | Display payload for DS to DS and NO DS traffic. | 2007-07-02 | 1 | -2/+10 | |
| | | | | | ok reyk@, looks ok damien@ | ||||
| * | unbreak 802.11 element parsing by using the TCHECK2 macro correctly | 2007-06-03 | 1 | -4/+4 | |
| | | | | | ok claudio@ | ||||
| * | Fix aligenment issues by using bcopy() and a local variable instead of the | 2007-03-27 | 1 | -25/+41 | |
| | | | | | | problematic *(u_intXX_t*)t casts. This fixes the bus errors I got on sparc64 while doing IEEE802_11_RADIO dumps. OK reyk@ mglocker@ | ||||
| * | Print the reason code of deauth and disassociation packets if in verbose mode. | 2007-03-26 | 1 | -1/+58 | |
| | | | | | | This helps debugging issues with stations that fail to join a network. OK mglocker@, reyk@, jsg@ | ||||
| * | set the RSSI Max value in ath(4) and use the new RSSI radiotap header | 2006-06-23 | 1 | -1/+13 | |
| | | | | | | | | instead of the old db signal header. also allow tcpdump and hostapd to print the new RSSI radiotap header values current/max rssi. ok damien@ jsg@ | ||||
| * | Update my e-mail address in the copyright statement, no binary changes. | 2005-12-18 | 1 | -2/+2 | |
| | | |||||
| * | add printer for IAPP and hostapd(8) messages | 2005-11-22 | 1 | -11/+18 | |
| | | | | | ok canacar@, tested by aanriot@ and others | ||||
| * | support decapsulation of 802.11 data frames | 2005-05-28 | 1 | -2/+33 | |
| | | | | | ok canacar@ | ||||
| * | simplification; ok reyk | 2005-03-09 | 1 | -14/+6 | |
| | | |||||
| * | make this compile on strict-alignment architectures. someone send | 2005-03-08 | 1 | -2/+3 | |
| | | | | | reyk a sparc64 please! | ||||
| * | add a printer for 802.11 and for additional radiotap headers, | 2005-03-07 | 1 | -0/+627 | |
| use -y IEEE802_11 or IEEE802_11_RADIO if supported by the driver. ok canacar@ | |||||
