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.c3155 static int http2_session_server_create(struct http2_session* h2_session) argument
3157 log_assert(h2_session->callbacks);
3158 h2_session->is_drop = 0;
3159 if(nghttp2_session_server_new(&h2_session->session,
3160 h2_session->callbacks,
3161 h2_session) == NGHTTP2_ERR_NOMEM) {
3170 static int http2_submit_settings(struct http2_session* h2_session) argument
3175 h2_session->c->http2_max_streams}};
3177 ret = nghttp2_submit_settings(h2_session->session, NGHTTP2_FLAG_NONE,
3218 if(!c_hdl->h2_session ||
[all …]
H A Dnetevent.h282 struct http2_session* h2_session; member
1014 void http2_session_add_stream(struct http2_session* h2_session,
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.c2521 struct http2_session* h2_session = source->ptr; in http2_submit_response_read_callback() local
2524 h2_session->session, stream_id))) { in http2_submit_response_read_callback()
2564 static int http2_submit_rst_stream(struct http2_session* h2_session, in http2_submit_rst_stream() argument
2567 int ret = nghttp2_submit_rst_stream(h2_session->session, in http2_submit_rst_stream()
2585 int http2_submit_dns_response(struct http2_session* h2_session) in http2_submit_dns_response() argument
2591 struct http2_stream* h2_stream = h2_session->c->h2_stream; in http2_submit_dns_response()
2600 if(sldns_buffer_remaining(h2_session->c->buffer) == 0) { in http2_submit_dns_response()
2611 rlen = sldns_buffer_remaining(h2_session->c->buffer); in http2_submit_dns_response()
2619 return http2_submit_rst_stream(h2_session, h2_stream); in http2_submit_dns_response()
2651 sldns_buffer_current(h2_session->c->buffer), in http2_submit_dns_response()
[all …]
H A Dlisten_dnsport.h466 int http2_submit_dns_response(struct http2_session* h2_session);