Changeset eade363 for libpacketdump/eth_34958.c
- Timestamp:
- 10/15/09 18:46:08 (11 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 34cab5b
- Parents:
- 189f5c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpacketdump/eth_34958.c
r11a7f9c reade363 15 15 } while(0) 16 16 17 static void decode_eap_request(c har *packet, unsigned len)17 static void decode_eap_request(const char *packet, unsigned len) 18 18 { 19 19 int v; … … 34 34 } 35 35 36 static void decode_eap(c har *packet, unsigned len)36 static void decode_eap(const char *packet, unsigned len) 37 37 { 38 38 int v; … … 54 54 } 55 55 56 static void decode_eapol_start(c har *packet, unsigned len)56 static void decode_eapol_start(const char *packet, unsigned len) 57 57 { 58 58 int v; … … 61 61 } 62 62 63 static void decode_eapol_logoff(c har *packet, unsigned len)63 static void decode_eapol_logoff(const char *packet, unsigned len) 64 64 { 65 65 int v; … … 77 77 }; 78 78 79 static void decode_eapol_key(c har *packet, unsigned len)79 static void decode_eapol_key(const char *packet, unsigned len) 80 80 { 81 81 int v; … … 84 84 } 85 85 86 static void decode_eapol_encapsulated_asf_alert(c har *packet, unsigned len)86 static void decode_eapol_encapsulated_asf_alert(const char *packet, unsigned len) 87 87 { 88 88 int v; … … 91 91 } 92 92 93 void decode(int link_type ,const char *packet,unsigned len)93 void decode(int link_type UNUSED,const char *packet,unsigned len) 94 94 { 95 int offset;96 95 int v; 97 96 int type;
Note: See TracChangeset
for help on using the changeset viewer.