Searched refs:eap (Results 1 - 25 of 265) sorted by relevance

1234567891011

/external/tcpdump/
H A Dprint-eap.c25 "@(#) $Header: /tcpdump/master/tcpdump/print-eap.c,v 1.3 2004/04/23 19:03:39 mcr Exp $";
57 const struct eap_packet_t *eap; local
59 eap = (const struct eap_packet_t *)cp;
60 ND_TCHECK(eap->data);
63 eap->code, eap->id, (eap->length[0]<<8) + eap->length[1]));
/external/wpa_supplicant_6/wpa_supplicant/examples/
H A Dieee8021x.conf8 eap=PEAP
H A Dwpa2-eap-ccmp.conf6 ssid="example wpa2-eap network"
11 eap=TLS
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap_otp.c91 struct eap_method *eap; local
94 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
96 if (eap == NULL)
99 eap->init = eap_otp_init;
100 eap->deinit = eap_otp_deinit;
101 eap->process = eap_otp_process;
103 ret = eap_peer_method_register(eap);
105 eap_peer_method_free(eap);
H A Deap_md5.c104 struct eap_method *eap; local
107 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
109 if (eap == NULL)
112 eap->init = eap_md5_init;
113 eap->deinit = eap_md5_deinit;
114 eap->process = eap_md5_process;
116 ret = eap_peer_method_register(eap);
118 eap_peer_method_free(eap);
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_otp.c85 struct eap_method *eap; local
88 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
90 if (eap == NULL)
93 eap->init = eap_otp_init;
94 eap->deinit = eap_otp_deinit;
95 eap->process = eap_otp_process;
97 ret = eap_peer_method_register(eap);
99 eap_peer_method_free(eap);
H A Deap_md5.c98 struct eap_method *eap; local
101 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
103 if (eap == NULL)
106 eap->init = eap_md5_init;
107 eap->deinit = eap_md5_deinit;
108 eap->process = eap_md5_process;
110 ret = eap_peer_method_register(eap);
112 eap_peer_method_free(eap);
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_otp.c85 struct eap_method *eap; local
88 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
90 if (eap == NULL)
93 eap->init = eap_otp_init;
94 eap->deinit = eap_otp_deinit;
95 eap->process = eap_otp_process;
97 ret = eap_peer_method_register(eap);
99 eap_peer_method_free(eap);
H A Deap_md5.c98 struct eap_method *eap; local
101 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
103 if (eap == NULL)
106 eap->init = eap_md5_init;
107 eap->deinit = eap_md5_deinit;
108 eap->process = eap_md5_process;
110 ret = eap_peer_method_register(eap);
112 eap_peer_method_free(eap);
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dieee8021x.conf8 eap=PEAP
H A Dwpa2-eap-ccmp.conf6 ssid="example wpa2-eap network"
11 eap=TLS
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_otp.c85 struct eap_method *eap; local
88 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
90 if (eap == NULL)
93 eap->init = eap_otp_init;
94 eap->deinit = eap_otp_deinit;
95 eap->process = eap_otp_process;
97 ret = eap_peer_method_register(eap);
99 eap_peer_method_free(eap);
H A Deap_md5.c98 struct eap_method *eap; local
101 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
103 if (eap == NULL)
106 eap->init = eap_md5_init;
107 eap->deinit = eap_md5_deinit;
108 eap->process = eap_md5_process;
110 ret = eap_peer_method_register(eap);
112 eap_peer_method_free(eap);
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_methods.c74 struct eap_method *eap; local
75 eap = os_zalloc(sizeof(*eap));
76 if (eap == NULL)
78 eap->version = version;
79 eap->vendor = vendor;
80 eap->method = method;
81 eap->name = name;
82 return eap;
H A Deap_server_identity.c152 struct eap_method *eap; local
155 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
158 if (eap == NULL)
161 eap->init = eap_identity_init;
162 eap->initPickUp = eap_identity_initPickUp;
163 eap->reset = eap_identity_reset;
164 eap->buildReq = eap_identity_buildReq;
165 eap->check = eap_identity_check;
166 eap->process = eap_identity_process;
167 eap
[all...]
H A Deap_server_vendor_test.c170 struct eap_method *eap; local
173 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
176 if (eap == NULL)
179 eap->init = eap_vendor_test_init;
180 eap->reset = eap_vendor_test_reset;
181 eap->buildReq = eap_vendor_test_buildReq;
182 eap->check = eap_vendor_test_check;
183 eap->process = eap_vendor_test_process;
184 eap->isDone = eap_vendor_test_isDone;
185 eap
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_methods.c74 struct eap_method *eap; local
75 eap = os_zalloc(sizeof(*eap));
76 if (eap == NULL)
78 eap->version = version;
79 eap->vendor = vendor;
80 eap->method = method;
81 eap->name = name;
82 return eap;
H A Deap_server_identity.c152 struct eap_method *eap; local
155 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
158 if (eap == NULL)
161 eap->init = eap_identity_init;
162 eap->initPickUp = eap_identity_initPickUp;
163 eap->reset = eap_identity_reset;
164 eap->buildReq = eap_identity_buildReq;
165 eap->check = eap_identity_check;
166 eap->process = eap_identity_process;
167 eap
[all...]
H A Deap_server_vendor_test.c170 struct eap_method *eap; local
173 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
176 if (eap == NULL)
179 eap->init = eap_vendor_test_init;
180 eap->reset = eap_vendor_test_reset;
181 eap->buildReq = eap_vendor_test_buildReq;
182 eap->check = eap_vendor_test_check;
183 eap->process = eap_vendor_test_process;
184 eap->isDone = eap_vendor_test_isDone;
185 eap
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c74 struct eap_method *eap; local
75 eap = os_zalloc(sizeof(*eap));
76 if (eap == NULL)
78 eap->version = version;
79 eap->vendor = vendor;
80 eap->method = method;
81 eap->name = name;
82 return eap;
H A Deap_server_identity.c152 struct eap_method *eap; local
155 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
158 if (eap == NULL)
161 eap->init = eap_identity_init;
162 eap->initPickUp = eap_identity_initPickUp;
163 eap->reset = eap_identity_reset;
164 eap->buildReq = eap_identity_buildReq;
165 eap->check = eap_identity_check;
166 eap->process = eap_identity_process;
167 eap
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dwpa_supplicant.conf.orig338 # eap: space-separated list of accepted EAP methods
441 # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
557 eap=TLS
571 eap=PEAP
585 eap=TTLS
598 eap=TTLS
611 eap=TTLS
646 ssid="eap-sim-test"
648 eap
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_supplicant.conf409 # eap: space-separated list of accepted EAP methods
522 # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
638 eap=TLS
652 eap=PEAP
666 eap=TTLS
679 eap=TTLS
692 eap=TTLS
727 ssid="eap-sim-test"
729 eap
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_identity.c158 struct eap_method *eap; local
161 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
164 if (eap == NULL)
167 eap->init = eap_identity_init;
168 eap->initPickUp = eap_identity_initPickUp;
169 eap->reset = eap_identity_reset;
170 eap->buildReq = eap_identity_buildReq;
171 eap->check = eap_identity_check;
172 eap->process = eap_identity_process;
173 eap
[all...]
H A Deap_vendor_test.c176 struct eap_method *eap; local
179 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
182 if (eap == NULL)
185 eap->init = eap_vendor_test_init;
186 eap->reset = eap_vendor_test_reset;
187 eap->buildReq = eap_vendor_test_buildReq;
188 eap->check = eap_vendor_test_check;
189 eap->process = eap_vendor_test_process;
190 eap->isDone = eap_vendor_test_isDone;
191 eap
[all...]

Completed in 286 milliseconds

1234567891011