forked from legendtang/ZDClient_win32
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheap_protocol.h
More file actions
56 lines (45 loc) · 1.55 KB
/
eap_protocol.h
File metadata and controls
56 lines (45 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* =====================================================================================
*
* Filename: eap_protocol.h
*
* Description:
*
* Version: 1.0
* Created: 07/07/2009 02:55:06 PM
* Revision: none
* Compiler: gcc
*
* Author: BOYPT (PT), pentie@gmail.com
* Company: http://apt-blog.co.cc
*
* =====================================================================================
*/
#include "commondef.h"
void
action_eapol_success(const struct eap_header *eap_head,
const struct pcap_pkthdr *packetinfo,
const uint8_t *packet);
void
action_eapol_failre(const struct eap_header *eap_head,
const struct pcap_pkthdr *packetinfo,
const uint8_t *packet);
void
action_eap_req_idnty(const struct eap_header *eap_head,
const struct pcap_pkthdr *packetinfo,
const uint8_t *packet);
void
action_eap_req_md5_chg(const struct eap_header *eap_head,
const struct pcap_pkthdr *packetinfo,
const uint8_t *packet);
void
action_eap_keep_alive(const struct eap_header *eap_head,
const struct pcap_pkthdr *packetinfo,
const uint8_t *packet);
void
print_server_info (const uint8_t *packet, u_int packetlength);
void
print_notification_msg(const uint8_t *packet);
u_int32_t get_ruijie_success_key (const uint8_t *success_packet);
void
send_eap_packet(enum EAPType send_type);