Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:eap

20  * Format and print EAP packets.
26 "@(#) $Header: /tcpdump/master/tcpdump/print-eap.c,v 1.5 2007-10-04 16:41:33 hannes Exp $";
57 { EAP_FRAME_TYPE_PACKET, "EAP packet" },
94 #define EAP_TYPE_TTLS 21 /* draft-funk-eap-ttls-v0-01.txt */
120 /* RFC 2716 - EAP TLS bits */
134 /* EAP-AKA and EAP-SIM - RFC 4187 */
159 * Print EAP requests / responses
166 const struct eap_frame_t *eap;
173 eap = (const struct eap_frame_t *)cp;
174 TCHECK(*eap);
179 tok2str(eap_frame_type_values, "unknown", eap->type),
180 eap->type,
181 eap->version,
182 EXTRACT_16BITS(eap->length));
187 tok2str(eap_frame_type_values, "unknown", eap->type),
188 eap->type,
189 eap->version,
190 EXTRACT_16BITS(eap->length));
195 switch (eap->type) {
300 printf("\n\t[|EAP]");