Lines Matching defs:auth_name
441 socklen_t* addrlen, char** auth_name)
450 *auth_name = hash+1;
452 *auth_name = NULL;
477 *auth_name = s+1;
480 *auth_name = NULL;
484 uint8_t* authextstrtodname(char* str, int* port, char** auth_name)
490 *auth_name = NULL;
496 *auth_name = hash+1;
498 *auth_name = NULL;
522 *auth_name = s+1;
1532 int check_auth_name_for_ssl(char* auth_name)
1534 if(!auth_name) return 1;
1536 log_err("the query has an auth_name %s, but libssl has no call to "
1538 "or upgrade the ssl crypto library.", auth_name);
1546 int set_auth_name_on_ssl(void* ssl, char* auth_name, int use_sni)
1548 if(!auth_name) return 1;
1551 (void)SSL_set_tlsext_host_name(ssl, auth_name);
1562 if(!SSL_set1_host(ssl, auth_name)) {
1569 if(auth_name) {
1574 if(!X509_VERIFY_PARAM_set1_host(param, auth_name, strlen(auth_name))) {
1581 verbose(VERB_ALGO, "the query has an auth_name, but libssl has no call to perform TLS authentication");