Lines Matching defs:auth_mode
404 " auth_mode=%%s default: (library default: none)\n" \
507 int auth_mode; /* verify mode for connection */
955 opt.auth_mode = DFL_AUTH_MODE;
1337 } else if (strcmp(p, "auth_mode") == 0) {
1339 opt.auth_mode = MBEDTLS_SSL_VERIFY_NONE;
1341 opt.auth_mode = MBEDTLS_SSL_VERIFY_OPTIONAL;
1343 opt.auth_mode = MBEDTLS_SSL_VERIFY_REQUIRED;
1843 if (opt.auth_mode != DFL_AUTH_MODE) {
1844 mbedtls_ssl_conf_authmode(&conf, opt.auth_mode);
2214 "auth_mode=optional for testing purposes if "