aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wlccp.c
AgeCommit message (Collapse)AuthorFilesLines
2007-07-17From Kevin A. Noll via private bug #1683:Stephen Fisher1-156/+3448
This is a major re-write of the WLCCP version 0xc1 dissector. It now is able to dissect many more WLCCP message types and the TLVs that may be included in a message. Placeholders are left for message types and TLV types that we do not currently have enough data to engineer a dissector. svn path=/trunk/; revision=22330
2007-04-13From Kevin A. Noll via bug 1522:Jeff Morriss1-28/+46
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1522 Support for WLCCP version 0xC1. Also updated his email address in AUTHORS. svn path=/trunk/; revision=21404
2006-12-09Change a match_strval() to val_to_str() in a col_add_fstr() call to preventStephen Fisher1-2/+2
problems if there isn't a match (corrupted packet). svn path=/trunk/; revision=20077
2006-10-23From Stephen Fisher:Jaap Keuter1-4/+6
Here is a patch to make a few small fixes to packet-wlccp.c: svn path=/trunk/; revision=19661
2006-10-18llc_add_oui() wants a pointer, not a pointer pointerUlf Lamping1-1/+1
svn path=/trunk/; revision=19585
2006-10-17Stephen Fisher:Jörg Mayer1-101/+458
Please apply the attached patch to improve the WLCCP dissector. I have also finished merging in packet-cisco-wireless.c, so it can be deleted. svn path=/trunk/; revision=19572
2006-10-07Stephen Fisher:Jörg Mayer1-0/+247
packet-cisco-wireless.c is actually trying to dissect WLCCP: I have attached a dissector I wrote from scratch for the frames that I'm seeing. It has #defines for the field offsets and lengths so it should be easier to merge. I also attached a sample capture with one of the frames that I'm seeing. There are more fields in the frame I haven't yet figured out, hopefully your dissector has those that I'm missing. Me: - Commented in wlccp over udp as well, it works most of the time. - Leave the file packet-cisco-wireless.c in for the time being to copy over knowledge until no usable info is left in the file. svn path=/trunk/; revision=19447