Lines Matching refs:auth_name
443 socklen_t* addrlen, char** auth_name)
452 *auth_name = hash+1;
454 *auth_name = NULL;
479 *auth_name = s+1;
482 *auth_name = NULL;
486 uint8_t* authextstrtodname(char* str, int* port, char** auth_name)
492 *auth_name = NULL;
498 *auth_name = hash+1;
500 *auth_name = NULL;
524 *auth_name = s+1;
1660 int check_auth_name_for_ssl(char* auth_name)
1662 if(!auth_name) return 1;
1664 log_err("the query has an auth_name %s, but libssl has no call to "
1666 "or upgrade the ssl crypto library.", auth_name);
1674 int set_auth_name_on_ssl(void* ssl, char* auth_name, int use_sni)
1676 if(!auth_name) return 1;
1679 (void)SSL_set_tlsext_host_name(ssl, auth_name);
1690 if(!SSL_set1_host(ssl, auth_name)) {
1697 if(auth_name) {
1702 if(!X509_VERIFY_PARAM_set1_host(param, auth_name, strlen(auth_name))) {
1709 verbose(VERB_ALGO, "the query has an auth_name, but libssl has no call to perform TLS authentication");