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.c3137 static int http2_session_server_create(struct http2_session* h2_session) argument
3139 log_assert(h2_session->callbacks);
3140 h2_session->is_drop = 0;
3141 if(nghttp2_session_server_new(&h2_session->session,
3142 h2_session->callbacks,
3143 h2_session) == NGHTTP2_ERR_NOMEM) {
3152 static int http2_submit_settings(struct http2_session* h2_session) argument
3157 h2_session->c->http2_max_streams}};
3159 ret = nghttp2_submit_settings(h2_session->session, NGHTTP2_FLAG_NONE,
3172 static void http2_stream_delete(struct http2_session* h2_session, argument
[all …]
H A Dnetevent.h284 struct http2_session* h2_session; member
1025 void http2_session_add_stream(struct http2_session* h2_session,
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.c2523 struct http2_session* h2_session = source->ptr; in http2_submit_response_read_callback() local
2526 h2_session->session, stream_id))) { in http2_submit_response_read_callback()
2566 static int http2_submit_rst_stream(struct http2_session* h2_session, in http2_submit_rst_stream() argument
2569 int ret = nghttp2_submit_rst_stream(h2_session->session, in http2_submit_rst_stream()
2587 int http2_submit_dns_response(struct http2_session* h2_session) in http2_submit_dns_response() argument
2593 struct http2_stream* h2_stream = h2_session->c->h2_stream; in http2_submit_dns_response()
2602 if(sldns_buffer_remaining(h2_session->c->buffer) == 0) { in http2_submit_dns_response()
2613 rlen = sldns_buffer_remaining(h2_session->c->buffer); in http2_submit_dns_response()
2621 return http2_submit_rst_stream(h2_session, h2_stream); in http2_submit_dns_response()
2653 sldns_buffer_current(h2_session->c->buffer), in http2_submit_dns_response()
[all …]
H A Dlisten_dnsport.h470 int http2_submit_dns_response(struct http2_session* h2_session);