Home
last modified time | relevance | path

Searched refs:EAP_PWD_HDR_SIZE (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/wpa/src/eap_peer/
H A Deap_pwd.c929 if ((len + EAP_PWD_HDR_SIZE) > data->mtu) { in eap_pwd_process()
930 len = data->mtu - EAP_PWD_HDR_SIZE; in eap_pwd_process()
934 EAP_PWD_HDR_SIZE + len, in eap_pwd_process()
1023 EAP_PWD_HDR_SIZE, in eap_pwd_process()
1081 if ((len + EAP_PWD_HDR_SIZE) > data->mtu) { in eap_pwd_process()
1093 len = data->mtu - EAP_PWD_HDR_SIZE - sizeof(u16); in eap_pwd_process()
1098 EAP_PWD_HDR_SIZE + len, in eap_pwd_process()
/freebsd/contrib/wpa/src/eap_server/
H A Deap_server_pwd.c439 EAP_PWD_HDR_SIZE, EAP_CODE_REQUEST, id); in eap_pwd_build_req()
493 if ((len + EAP_PWD_HDR_SIZE) > data->mtu) { in eap_pwd_build_req()
494 len = data->mtu - EAP_PWD_HDR_SIZE; in eap_pwd_build_req()
503 EAP_PWD_HDR_SIZE + sizeof(u16); in eap_pwd_build_req()
516 EAP_PWD_HDR_SIZE + len + in eap_pwd_build_req()
/freebsd/contrib/wpa/src/eap_common/
H A Deap_pwd_common.h26 #define EAP_PWD_HDR_SIZE 1 macro