Home
last modified time | relevance | path

Searched refs:http_endpoint (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/unbound/util/
H A Dnetevent.h267 char* http_endpoint; member
639 uint32_t http_max_streams, char* http_endpoint,
H A Dconfigparser.y1161 free(cfg_parser->cfg->http_endpoint);
1163 cfg_parser->cfg->http_endpoint = malloc(strlen($2)+2);
1164 if(!cfg_parser->cfg->http_endpoint)
1166 cfg_parser->cfg->http_endpoint[0] = '/';
1167 memmove(cfg_parser->cfg->http_endpoint+1, $2,
1171 cfg_parser->cfg->http_endpoint = $2;
H A Dconfig_file.h152 char* http_endpoint; member
H A Dnetevent.c6051 uint32_t http_max_streams, char* http_endpoint, argument
6116 if(!(c->http_endpoint = strdup(http_endpoint))) {
6128 free(c->http_endpoint);
6138 free(c->http_endpoint);
6171 uint32_t http_max_streams, char* http_endpoint, argument
6253 http_max_streams, http_endpoint,
6592 if(c->type == comm_http && c->http_endpoint) {
6593 free(c->http_endpoint);
6594 c->http_endpoint = NULL;
H A Dconfig_file.c133 if(!(cfg->http_endpoint = strdup("/dns-query"))) goto error_exit; in config_create()
603 else S_STR("http-endpoint:", http_endpoint) in config_set_option()
1155 else O_STR(opt, "http-endpoint", http_endpoint) in config_get_option()
1676 free(cfg->http_endpoint); in config_delete()
H A Dconfigparser.c4030 free(cfg_parser->cfg->http_endpoint); in yyparse()
4032 cfg_parser->cfg->http_endpoint = malloc(strlen((yyvsp[0].str))+2); in yyparse()
4033 if(!cfg_parser->cfg->http_endpoint) in yyparse()
4035 cfg_parser->cfg->http_endpoint[0] = '/'; in yyparse()
4036 memmove(cfg_parser->cfg->http_endpoint+1, (yyvsp[0].str), in yyparse()
4040 cfg_parser->cfg->http_endpoint = (yyvsp[0].str); in yyparse()
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.h213 char* http_endpoint, int http_notls, struct tcl_list* tcp_conn_limit,
H A Dlisten_dnsport.c1525 char* http_endpoint, int http_notls, struct tcl_list* tcp_conn_limit, in listen_create() argument
1576 http_max_streams, http_endpoint, in listen_create()
3084 size_t el = strlen(h2_session->c->http_endpoint); in http2_req_header_cb()
3087 if(valuelen < el || memcmp(h2_session->c->http_endpoint, in http2_req_header_cb()
/freebsd/contrib/unbound/daemon/
H A Dworker.c2175 cfg->http_endpoint, cfg->http_notls_downstream, in worker_init()