Home
last modified time | relevance | path

Searched refs:authmode (Results 1 – 4 of 4) sorted by relevance

/hostap-latest/src/crypto/
Dtls_mbedtls_alt.c1557 …int authmode = tls_conf->verify_peer ? MBEDTLS_SSL_VERIFY_REQUIRED : MBEDTLS_SSL_VERIFY_O… in tls_mbedtls_set_certs() local
1558 mbedtls_ssl_conf_authmode(&tls_conf->conf, authmode); in tls_mbedtls_set_certs()
1980 int authmode; in tls_connection_set_verify() local
1984 authmode = MBEDTLS_SSL_VERIFY_OPTIONAL; in tls_connection_set_verify()
1987 authmode = MBEDTLS_SSL_VERIFY_REQUIRED; in tls_connection_set_verify()
1990 authmode = MBEDTLS_SSL_VERIFY_NONE; in tls_connection_set_verify()
1994 mbedtls_ssl_set_hs_authmode(&conn->ssl, authmode); in tls_connection_set_verify()
1996 if ((conn->verify_peer = (authmode != MBEDTLS_SSL_VERIFY_NONE))) in tls_connection_set_verify()
/hostap-latest/src/drivers/
Ddriver_bsd.c1180 int authmode; in wpa_driver_bsd_set_auth_alg() local
1184 authmode = IEEE80211_AUTH_AUTO; in wpa_driver_bsd_set_auth_alg()
1186 authmode = IEEE80211_AUTH_SHARED; in wpa_driver_bsd_set_auth_alg()
1188 authmode = IEEE80211_AUTH_OPEN; in wpa_driver_bsd_set_auth_alg()
1190 return set80211param(priv, IEEE80211_IOC_AUTHMODE, authmode); in wpa_driver_bsd_set_auth_alg()
Ddriver_atheros.c1903 int authmode; in atheros_set_authmode() local
1907 authmode = IEEE80211_AUTH_AUTO; in atheros_set_authmode()
1909 authmode = IEEE80211_AUTH_OPEN; in atheros_set_authmode()
1911 authmode = IEEE80211_AUTH_SHARED; in atheros_set_authmode()
1915 return set80211param(priv, IEEE80211_PARAM_AUTHMODE, authmode); in atheros_set_authmode()
Ddriver.h4371 int (*set_authmode)(void *priv, int authmode);