Home
last modified time | relevance | path

Searched refs:tls_auth (Results 1 – 3 of 3) sorted by relevance

/openbsd/usr.sbin/nsd/
H A Dconfigparser.y242 | tls_auth
695 tls_auth:
699 assert(cfg_parser->tls_auth == NULL);
700 cfg_parser->tls_auth = tls_auth;
704 struct tls_auth_options *tls_auth = cfg_parser->tls_auth; variable
705 if(tls_auth->name == NULL) {
707 } else if(tls_auth->auth_domain_name == NULL) {
708 yyerror("tls-auth %s has no auth-domain-name", tls_auth->name);
710 yyerror("duplicate tls-auth %s", tls_auth->name);
712 tls_auth_options_insert(cfg_parser->opt, tls_auth);
[all …]
H A Doptions.h466 struct tls_auth_options *tls_auth; member
H A Doptions.c227 cfg_parser->tls_auth = NULL; in parse_options_file()