aboutsummaryrefslogtreecommitdiffstats
path: root/packet-eapol.c
AgeCommit message (Collapse)AuthorFilesLines
2004-04-07From Jouni Malinen: add support for the 802.11i/RSN pre-authenticationguy1-1/+2
Ethertype. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10558 f5534014-38df-0310-8fa8-9805f1628bb7
2004-03-30From Jouni Malinen: add support for the most likely EAPOL-Key packetguy1-2/+5
type. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10525 f5534014-38df-0310-8fa8-9805f1628bb7
2004-03-28From Jouni Malinen:guy1-6/+22
Small changes for EAPOL-Key dissector for IEEE 802.11i/RSN: - add Encrypted Key Data flag for key info - do not try to parse EAPOL-Key Key Data if it is encrypted (RSN: Encrypted Key Data flag, WPA: Group Key) - Key Index and Key ID are reserved in RSN git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10510 f5534014-38df-0310-8fa8-9805f1628bb7
2003-11-13Require that field names contain only alphanumerics, "-", "_", and ".".guy1-2/+2
Fix the names that contained other characters. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8959 f5534014-38df-0310-8fa8-9805f1628bb7
2003-10-14From Motonori Shindo: Key Information dissection in EAPOL-Key messages.guy1-3/+105
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8690 f5534014-38df-0310-8fa8-9805f1628bb7
2003-09-23Get rid of some unnecessary includes.guy1-26/+9
Instead of using "dissect_vendor_specific_ie()" to dissect the WPA key data, turn the code to dissect a collection of 802.11 tagged parameters into a routine, use that routine when dissecting 802.11 management frames, and also use it to dissect the key data. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8513 f5534014-38df-0310-8fa8-9805f1628bb7
2003-06-03From Jeff Liu: Add support for WPA (Wi-Fi Protected Access) key in EAPOLgerald1-28/+119
frames and WPA IE in 802.11 beacon and probe response frames. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7770 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Removed trailing whitespaces from .h and .c files using thejmayer1-9/+9
winapi_cleanup tool written by Patrik Stridvall for the wine project. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6117 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hjmayer1-9/+1
equivalents for the toplevel directory. The removal of winsock2.h will hopefully not cause any problems under MSVC++, as those files using struct timeval still include wtap.h, which still includes winsock2.h. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5932 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-29Removal (or, at least, #ifdeffing out) of unused variables andguy1-2/+1
functions, from David Frascone. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5288 f5534014-38df-0310-8fa8-9805f1628bb7
2002-03-11From Adam Sulmicki: use "proto_tree_add_uint()" rather thanguy1-2/+2
"proto_tree_add_boolean()" for the "hf_eapol_keydes_key_index_indexnum" field, as it's an FT_UINT8, not an FT_BOOLEAN. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4928 f5534014-38df-0310-8fa8-9805f1628bb7
2002-02-22Dissect the payload of EAPOL Key messages.guy1-34/+132
Put in a comment noting that the payload of EAPOL Encapsulated ASF Alert messages should perhaps be dissected as SNMP Trap messages. Put the type of the message into the Info column. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4789 f5534014-38df-0310-8fa8-9805f1628bb7
2002-02-22Get rid of an unnecessary "volatile".guy1-19/+20
Give the type field a value_string array, and use that field when putting the type into the protocol tree. Display the data under the EAPOL tree, as it's part of the EAPOL PDU. Just use "next_tvb" as the tvbuff for the data; don't create a new one that, the different fourth argument to "tvb_new_subset()" nonwithstanding, refers to the same data as "next_tvb". Call the EAP dissector through a handle. Nobody directly calls the EAP dissector any more, they all call it through handles; make it static. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4787 f5534014-38df-0310-8fa8-9805f1628bb7
2002-02-17With the tvbuffication of all dissectors, the "packet_info" structure noguy1-2/+2
longer contains length fields, so there's no need to pass a "packet_info *" argument to "set_actual_length()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4748 f5534014-38df-0310-8fa8-9805f1628bb7
2002-01-21Include files from the "epan" directory and subdirectories thereof withguy1-2/+2
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4586 f5534014-38df-0310-8fa8-9805f1628bb7
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"guy1-5/+5
structure to the "packet_info" structure; only stuff that's permanently stored with each frame should be in the "frame_data" structure, and the "column_info" structure is not guaranteed to hold the column values for that frame at all times - it was only in the "frame_data" structure so that it could be passed to dissectors, and, as all dissectors are now passed a pointer to a "packet_info" structure, it could just as well be put in the "packet_info" structure. That saves memory, by shrinking the "frame_data" structure (there's one of those per frame), and also lets us clean up the code a bit. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4370 f5534014-38df-0310-8fa8-9805f1628bb7
2001-12-03Make "dissector_add()", "dissector_delete()", and "dissector_change()"guy1-2/+5
take a dissector handle as an argument, rather than a pointer to a dissector function and a protocol ID. Associate dissector handles with dissector table entries. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4308 f5534014-38df-0310-8fa8-9805f1628bb7
2001-11-26Moved from using dissect_data() to using call_dissector()hagbard1-2/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4269 f5534014-38df-0310-8fa8-9805f1628bb7
2001-11-06IEEE 802.1x, a/k/a EAPOL, and PPP/EAPOL EAP support, from Pekkaguy1-0/+139
Nikander. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4170 f5534014-38df-0310-8fa8-9805f1628bb7