| /src/external/bsd/nsd/dist/ |
| configparser.y | 257 | tls_auth 845 tls_auth: label 848 tls_auth_options_type *tls_auth = tls_auth_options_create(cfg_parser->opt->region); 849 assert(cfg_parser->tls_auth == NULL); 850 cfg_parser->tls_auth = tls_auth; 854 struct tls_auth_options *tls_auth = cfg_parser->tls_auth; 855 if(tls_auth->name == NULL) { 857 } else if(tls_auth->auth_domain_name == NULL) [all...] |
| axfr.c | 193 if (nsd->options->tls_auth_xfr_only && !q->tls_auth) { 262 (q->tls||q->tls_auth)?(q->tls?"tls":"tls-auth"):"")); 275 (q->tls||q->tls_auth)?(q->tls?"tls":"tls-auth"):"",
|
| query.h | 87 SSL* tls_auth; member in struct:query
|
| configparser.c | 322 YYSYMBOL_tls_auth = 179, /* tls_auth */ 847 "remote_control_block", "remote_control_option", "tls_auth", "$@2", 2662 tls_auth_options_type *tls_auth = tls_auth_options_create(cfg_parser->opt->region); local 2663 assert(cfg_parser->tls_auth == NULL); 2664 cfg_parser->tls_auth = tls_auth; 2669 case 136: /* tls_auth: VAR_TLS_AUTH $@2 tls_auth_block */ 2672 struct tls_auth_options *tls_auth = cfg_parser->tls_auth; local 2673 if(tls_auth->name == NULL) [all...] |
| server.c | 309 SSL* tls_auth; member in struct:tcp_handler_data 3875 } else if(p->tls_auth) { 4386 if(data->tls_auth) { 4387 SSL_shutdown(data->tls_auth); 4388 SSL_free(data->tls_auth); 4389 data->tls_auth = NULL; 4960 if(data->tls_auth) 4961 r = SSL_do_handshake(data->tls_auth); 4967 if(data->tls_auth) 4968 want = SSL_get_error(data->tls_auth, r) [all...] |
| options.h | 75 /* rbtree of tls_auth defined, by name */ 438 /* tls_auth for XoT */ 504 struct tls_auth_options *tls_auth; member in struct:config_parser_state
|
| options.c | 254 cfg_parser->tls_auth = NULL; 313 /* Find tls_auth */ 318 c_error("tls_auth %s in pattern %s could not be found", 330 /* Find tls_auth */ 334 c_error("tls_auth %s in pattern %s could not be found", 1991 (acl->tls_auth_name && q->tls_auth)?acl->tls_auth_name:"")); 2010 /* we are in a acl with tls_auth */ 2011 if (acl->tls_auth_name && q->tls_auth) { 2012 /* we have auth_domain_name in tls_auth */ 2014 if (!acl_tls_hostname_matches(q->tls_auth, acl->tls_auth_options->auth_domain_name)) [all...] |