Home
last modified time | relevance | path

Searched refs:h2_session (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/unbound/util/
H A Dnetevent.c3200 static int http2_session_server_create(struct http2_session* h2_session) argument
3202 log_assert(h2_session->callbacks);
3203 h2_session->is_drop = 0;
3204 if(nghttp2_session_server_new(&h2_session->session,
3205 h2_session->callbacks,
3206 h2_session) == NGHTTP2_ERR_NOMEM) {
3215 static int http2_submit_settings(struct http2_session* h2_session) argument
3220 h2_session->c->http2_max_streams}};
3222 ret = nghttp2_submit_settings(h2_session->session, NGHTTP2_FLAG_NONE,
3234 static void http2_session_clear_meshstate(struct http2_session* h2_session) argument
[all …]
H A Dnetevent.h288 struct http2_session* h2_session; member
1032 void http2_session_add_stream(struct http2_session* h2_session,
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.c2533 struct http2_session* h2_session = source->ptr; in http2_submit_response_read_callback() local
2536 h2_session->session, stream_id))) { in http2_submit_response_read_callback()
2576 static int http2_submit_rst_stream(struct http2_session* h2_session, in http2_submit_rst_stream() argument
2579 int ret = nghttp2_submit_rst_stream(h2_session->session, in http2_submit_rst_stream()
2597 int http2_submit_dns_response(struct http2_session* h2_session) in http2_submit_dns_response() argument
2603 struct http2_stream* h2_stream = h2_session->c->h2_stream; in http2_submit_dns_response()
2612 if(sldns_buffer_remaining(h2_session->c->buffer) == 0) { in http2_submit_dns_response()
2623 rlen = sldns_buffer_remaining(h2_session->c->buffer); in http2_submit_dns_response()
2631 return http2_submit_rst_stream(h2_session, h2_stream); in http2_submit_dns_response()
2663 sldns_buffer_current(h2_session->c->buffer), in http2_submit_dns_response()
[all …]
H A Dlisten_dnsport.h478 int http2_submit_dns_response(struct http2_session* h2_session);