Home
last modified time | relevance | path

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

/freebsd/contrib/unbound/util/
H A Dnetevent.h273 char* http_endpoint; member
652 uint32_t http_max_streams, char* http_endpoint,
H A Dconfigparser.y1188 free(cfg_parser->cfg->http_endpoint);
1190 cfg_parser->cfg->http_endpoint = malloc(strlen($2)+2);
1191 if(cfg_parser->cfg->http_endpoint) {
1192 cfg_parser->cfg->http_endpoint[0] = '/';
1193 memmove(cfg_parser->cfg->http_endpoint+1, $2,
1200 cfg_parser->cfg->http_endpoint = $2;
H A Dconfig_file.h157 char* http_endpoint; member
H A Dnetevent.c6172 uint32_t http_max_streams, char* http_endpoint, argument
6238 if(!(c->http_endpoint = strdup(http_endpoint))) {
6250 free(c->http_endpoint);
6260 free(c->http_endpoint);
6294 uint32_t http_max_streams, char* http_endpoint, argument
6377 http_max_streams, http_endpoint,
6723 if(c->type == comm_http && c->http_endpoint) {
6724 free(c->http_endpoint);
6725 c->http_endpoint = NULL;
H A Dconfig_file.c138 if(!(cfg->http_endpoint = strdup("/dns-query"))) goto error_exit; in config_create()
648 else S_STR("http-endpoint:", http_endpoint) in config_set_option()
1203 else O_STR(opt, "http-endpoint", http_endpoint) in config_get_option()
1778 free(cfg->http_endpoint); in config_delete()
H A Dconfigparser.c4086 free(cfg_parser->cfg->http_endpoint); in yyparse()
4088 cfg_parser->cfg->http_endpoint = malloc(strlen((yyvsp[0].str))+2); in yyparse()
4089 if(cfg_parser->cfg->http_endpoint) { in yyparse()
4090 cfg_parser->cfg->http_endpoint[0] = '/'; in yyparse()
4091 memmove(cfg_parser->cfg->http_endpoint+1, (yyvsp[0].str), in yyparse()
4098 cfg_parser->cfg->http_endpoint = (yyvsp[0].str); in yyparse()
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.h218 char* http_endpoint, int http_notls, struct tcl_list* tcp_conn_limit,
H A Dlisten_dnsport.c1537 char* http_endpoint, int http_notls, struct tcl_list* tcp_conn_limit, in listen_create() argument
1588 http_max_streams, http_endpoint, in listen_create()
3085 size_t el = strlen(h2_session->c->http_endpoint); in http2_req_header_cb()
3088 if(valuelen < el || memcmp(h2_session->c->http_endpoint, in http2_req_header_cb()
/freebsd/contrib/unbound/daemon/
H A Dremote.c5144 FR_CHECK_CHANGED_CFG_STR("http-endpoint", http_endpoint, changed_str); in fr_check_compat_cfg()
5403 m += getmem_str(cfg->http_endpoint); in config_file_getmem()
6287 COPY_VAR_ptr(http_endpoint); in fr_atomic_copy_cfg()
H A Dworker.c2344 cfg->http_endpoint, cfg->http_notls_downstream, in worker_init()