Searched refs:eap_fast_a_id (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.1-release/contrib/wpa/src/radius/
H A Dradius_server.h70 * eap_fast_a_id - EAP-FAST authority identity (A-ID)
78 u8 *eap_fast_a_id; member in struct:radius_server_conf
81 * eap_fast_a_id_len - Length of eap_fast_a_id buffer in octets
H A Dradius_server.c149 * eap_fast_a_id - EAP-FAST authority identity (A-ID)
157 u8 *eap_fast_a_id; member in struct:radius_server_data
160 * eap_fast_a_id_len - Length of eap_fast_a_id buffer in octets
504 eap_conf.eap_fast_a_id = data->eap_fast_a_id;
1265 if (conf->eap_fast_a_id) {
1266 data->eap_fast_a_id = os_malloc(conf->eap_fast_a_id_len);
1267 if (data->eap_fast_a_id) {
1268 os_memcpy(data->eap_fast_a_id, conf->eap_fast_a_id,
[all...]
/freebsd-10.1-release/contrib/wpa/src/eap_server/
H A Deap.h92 u8 *eap_fast_a_id; member in struct:eap_config
H A Deap_i.h168 u8 *eap_fast_a_id; member in struct:eap_sm
H A Deap_server.c1256 if (conf->eap_fast_a_id) {
1257 sm->eap_fast_a_id = os_malloc(conf->eap_fast_a_id_len);
1258 if (sm->eap_fast_a_id) {
1259 os_memcpy(sm->eap_fast_a_id, conf->eap_fast_a_id,
1308 os_free(sm->eap_fast_a_id);
H A Deap_server_fast.c463 if (sm->eap_fast_a_id == NULL) {
473 os_memcpy(data->srv_id, sm->eap_fast_a_id, sm->eap_fast_a_id_len);
/freebsd-10.1-release/contrib/wpa/src/eapol_auth/
H A Deapol_auth_sm.h28 u8 *eap_fast_a_id; member in struct:eapol_auth_config
H A Deapol_auth_sm.c818 eap_conf.eap_fast_a_id = eapol->conf.eap_fast_a_id;
1065 if (src->eap_fast_a_id) {
1066 dst->eap_fast_a_id = os_malloc(src->eap_fast_a_id_len);
1067 if (dst->eap_fast_a_id == NULL) {
1071 os_memcpy(dst->eap_fast_a_id, src->eap_fast_a_id,
1075 dst->eap_fast_a_id = NULL;
1080 os_free(dst->eap_fast_a_id);
1102 os_free(conf->eap_fast_a_id);
[all...]
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dauthsrv.c100 srv.eap_fast_a_id = conf->eap_fast_a_id;
H A Dap_config.h299 u8 *eap_fast_a_id; member in struct:hostapd_bss_config
H A Dap_config.c435 os_free(conf->eap_fast_a_id);
H A Dieee802_1x.c1825 conf.eap_fast_a_id = hapd->conf->eap_fast_a_id;
/freebsd-10.1-release/contrib/wpa/hostapd/
H A Dconfig_file.c1882 } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
1886 "eap_fast_a_id", line);
1889 os_free(bss->eap_fast_a_id);
1890 bss->eap_fast_a_id = os_malloc(idlen / 2);
1891 if (bss->eap_fast_a_id == NULL ||
1892 hexstr2bin(pos, bss->eap_fast_a_id,
1896 "eap_fast_a_id", line);

Completed in 157 milliseconds