Lines Matching defs:authentication
85 " authentication=%%d default: 0 (disabled)\n" \
91 " authentication options disabled. (Require MBEDTLS_BASE64_C)\n"
127 int authentication; /* if authentication is required */
129 const char *user_name; /* username to use for authentication */
130 const char *user_pwd; /* password to use for authentication */
387 opt.authentication = DFL_AUTHENTICATION;
414 } else if (strcmp(p, "authentication") == 0) {
415 opt.authentication = atoi(q);
416 if (opt.authentication < 0 || opt.authentication > 1) {
498 * (can be skipped if client authentication is not required)
674 if (opt.authentication) {