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

1234

/freebsd-11-stable/sys/ufs/ufs/
H A Dextattr.h87 * EXTATTR_NEXT(eap) returns a pointer to the next extended attribute
88 * following eap.
89 * EXTATTR_CONTENT(eap) returns a pointer to the extended attribute
90 * content referenced by eap.
91 * EXTATTR_CONTENT_SIZE(eap) returns the size of the extended attribute
92 * content referenced by eap.
93 * EXTATTR_SET_LENGTHS(eap, contentsize) called after initializing the
97 #define EXTATTR_NEXT(eap) \
98 ((struct extattr *)(((void *)(eap)) + (eap)
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dieee8021x.conf8 eap=PEAP
H A Dwpa2-eap-ccmp.conf6 ssid="example wpa2-eap network"
11 eap=TLS
H A DopenCryptoki.conf25 eap=TLS
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_otp.c85 struct eap_method *eap; local
87 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
89 if (eap == NULL)
92 eap->init = eap_otp_init;
93 eap->deinit = eap_otp_deinit;
94 eap->process = eap_otp_process;
96 return eap_peer_method_register(eap);
H A Deap_tls.c424 struct eap_method *eap; local
426 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
428 if (eap == NULL)
431 eap->init = eap_tls_init;
432 eap->deinit = eap_tls_deinit;
433 eap->process = eap_tls_process;
434 eap->isKeyAvailable = eap_tls_isKeyAvailable;
435 eap->getKey = eap_tls_getKey;
436 eap->getSessionId = eap_tls_get_session_id;
437 eap
450 struct eap_method *eap; local
477 struct eap_method *eap; local
[all...]
H A Deap_md5.c104 struct eap_method *eap; local
106 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
108 if (eap == NULL)
111 eap->init = eap_md5_init;
112 eap->deinit = eap_md5_deinit;
113 eap->process = eap_md5_process;
115 return eap_peer_method_register(eap);
H A Deap_gtc.c129 struct eap_method *eap; local
131 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
133 if (eap == NULL)
136 eap->init = eap_gtc_init;
137 eap->deinit = eap_gtc_deinit;
138 eap->process = eap_gtc_process;
140 return eap_peer_method_register(eap);
H A Deap_vendor_test.c171 struct eap_method *eap; local
173 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
176 if (eap == NULL)
179 eap->init = eap_vendor_test_init;
180 eap->deinit = eap_vendor_test_deinit;
181 eap->process = eap_vendor_test_process;
182 eap->isKeyAvailable = eap_vendor_test_isKeyAvailable;
183 eap->getKey = eap_vendor_test_getKey;
185 return eap_peer_method_register(eap);
H A Deap_methods.c284 struct eap_method *eap; local
285 eap = os_zalloc(sizeof(*eap));
286 if (eap == NULL)
288 eap->version = version;
289 eap->vendor = vendor;
290 eap->method = method;
291 eap->name = name;
292 return eap;
H A Deap_leap.c281 const struct eap_hdr *eap; local
299 eap = wpabuf_head(reqData);
300 if (wpabuf_len(reqData) < sizeof(*eap) ||
301 be_to_host16(eap->length) > wpabuf_len(reqData)) {
314 switch (eap->code) {
323 "ignored", eap->code);
402 struct eap_method *eap; local
404 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
406 if (eap == NULL)
409 eap
[all...]
/freebsd-11-stable/contrib/wpa/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_tls.c276 * draft-ietf-emu-eap-tls13-05, but OpenSSL does not allow zero
454 struct eap_method *eap; local
456 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
458 if (eap == NULL)
461 eap->init = eap_tls_init;
462 eap->reset = eap_tls_reset;
463 eap->buildReq = eap_tls_buildReq;
464 eap->check = eap_tls_check;
465 eap->process = eap_tls_process;
466 eap
479 struct eap_method *eap; local
506 struct eap_method *eap; local
[all...]
H A Deap_server_vendor_test.c170 struct eap_method *eap; local
172 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
175 if (eap == NULL)
178 eap->init = eap_vendor_test_init;
179 eap->reset = eap_vendor_test_reset;
180 eap->buildReq = eap_vendor_test_buildReq;
181 eap->check = eap_vendor_test_check;
182 eap->process = eap_vendor_test_process;
183 eap->isDone = eap_vendor_test_isDone;
184 eap
[all...]
H A Deap_server_identity.c159 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_server_md5.c155 struct eap_method *eap; local
157 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
159 if (eap == NULL)
162 eap->init = eap_md5_init;
163 eap->reset = eap_md5_reset;
164 eap->buildReq = eap_md5_buildReq;
165 eap->check = eap_md5_check;
166 eap->process = eap_md5_process;
167 eap->isDone = eap_md5_isDone;
168 eap
[all...]
H A Deap_server_gtc.c203 struct eap_method *eap; local
205 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
207 if (eap == NULL)
210 eap->init = eap_gtc_init;
211 eap->reset = eap_gtc_reset;
212 eap->buildReq = eap_gtc_buildReq;
213 eap->check = eap_gtc_check;
214 eap->process = eap_gtc_process;
215 eap->isDone = eap_gtc_isDone;
216 eap
[all...]
H A Deap_server_wsc.c490 struct eap_method *eap; local
492 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
495 if (eap == NULL)
498 eap->init = eap_wsc_init;
499 eap->reset = eap_wsc_reset;
500 eap->buildReq = eap_wsc_buildReq;
501 eap->check = eap_wsc_check;
502 eap->process = eap_wsc_process;
503 eap->isDone = eap_wsc_isDone;
504 eap
[all...]
H A Deap_server_tnc.c556 struct eap_method *eap; local
558 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
560 if (eap == NULL)
563 eap->init = eap_tnc_init;
564 eap->reset = eap_tnc_reset;
565 eap->buildReq = eap_tnc_buildReq;
566 eap->check = eap_tnc_check;
567 eap->process = eap_tnc_process;
568 eap->isDone = eap_tnc_isDone;
569 eap
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-eap.c82 #define EAP_TYPE_TTLS 21 /* draft-funk-eap-ttls-v0-01.txt */
154 const struct eap_frame_t *eap; local
161 eap = (const struct eap_frame_t *)cp;
162 ND_TCHECK(*eap);
167 tok2str(eap_frame_type_values, "unknown", eap->type),
168 eap->type,
169 eap->version,
170 EXTRACT_16BITS(eap->length)));
175 tok2str(eap_frame_type_values, "unknown", eap->type),
176 eap
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant.conf624 # eap: Pre-configured EAP method
630 # This optional field is used with like the 'eap' parameter.
633 # This optional field is used with like the 'eap' parameter.
717 # eap=TTLS
1069 # eap: space-separated list of accepted EAP methods
1224 # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
1561 eap=TLS
1575 eap=PEAP
1589 eap
[all...]
H A Dconfig.c17 #include "eap_peer/eap.h"
1527 if (!errors && ssid->eap.eap_methods) {
1531 prev_m = ssid->eap.eap_methods;
1553 wpa_hexdump(MSG_MSGDUMP, "eap methods",
1555 os_free(ssid->eap.eap_methods);
1556 ssid->eap.eap_methods = methods;
1567 const struct eap_method_type *eap_methods = ssid->eap.eap_methods;
1605 if (!ssid->eap.password)
1608 bin_clear_free(ssid->eap.password, ssid->eap
2517 eap_peer_config_free(struct eap_peer_config *eap) argument
[all...]
/freebsd-11-stable/libexec/bootpd/
H A Dgetether.c42 getether(ifname, eap)
43 char *ifname, *eap;
57 bcopy(&phys.current_pa[0], eap, EALEN);
76 getether(ifname, eap)
78 char *eap; /* Ether address (output) */
103 bcopy(&ifrnit.ifr_addr.sa_data[0], eap, EALEN);
124 getether(ifname, eap)
126 char *eap; /* Ether address (output) */
155 bcopy(LLADDR((struct sockaddr_dl *) &ifrp->ifr_addr), eap, EALEN);
191 getether(ifname, eap)
153 bcopy(LLADDR((struct sockaddr_dl *) &ifrp->ifr_addr), eap, EALEN); local
[all...]
/freebsd-11-stable/sbin/restore/
H A Dtape.c736 struct extattr *eap, *eaend; local
740 for (eap = buf; eap < eaend; eap = EXTATTR_NEXT(eap)) {
744 if (EXTATTR_NEXT(eap) > eaend || eap->ea_length <= 0) {
746 eap == buf ? "" : "remainder ");
749 if (eap->ea_namespace == EXTATTR_NAMESPACE_EMPTY)
752 namespace_names[eap
796 struct extattr *eap, *eaend; local
856 struct extattr *eap, *eaend; local
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_common/
H A Deap_common.c184 const struct eap_hdr *eap; local
186 if (wpabuf_len(msg) < sizeof(*eap))
189 eap = wpabuf_head(msg);
190 return eap->identifier;

Completed in 149 milliseconds

1234