Home
last modified time | relevance | path

Searched refs:h2_stream (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.c2522 struct http2_stream* h2_stream; in http2_submit_response_read_callback() local
2525 if(!(h2_stream = nghttp2_session_get_stream_user_data( in http2_submit_response_read_callback()
2531 if(!h2_stream->rbuffer || in http2_submit_response_read_callback()
2532 sldns_buffer_remaining(h2_stream->rbuffer) == 0) { in http2_submit_response_read_callback()
2539 if(copylen > sldns_buffer_remaining(h2_stream->rbuffer)) in http2_submit_response_read_callback()
2540 copylen = sldns_buffer_remaining(h2_stream->rbuffer); in http2_submit_response_read_callback()
2544 memcpy(buf, sldns_buffer_current(h2_stream->rbuffer), copylen); in http2_submit_response_read_callback()
2545 sldns_buffer_skip(h2_stream->rbuffer, copylen); in http2_submit_response_read_callback()
2547 if(sldns_buffer_remaining(h2_stream->rbuffer) == 0) { in http2_submit_response_read_callback()
2551 sldns_buffer_capacity(h2_stream->rbuffer); in http2_submit_response_read_callback()
[all …]
H A Dmesh.c469 http2_stream_remove_mesh_state(rep->c->h2_stream); in mesh_new_client()
482 http2_stream_remove_mesh_state(rep->c->h2_stream); in mesh_new_client()
554 http2_stream_add_meshstate(rep->c->h2_stream, mesh, s); in mesh_new_client()
607 http2_stream_remove_mesh_state(rep->c->h2_stream); in mesh_new_client()
1086 http2_stream_remove_mesh_state(rep->h2_stream); in mesh_state_cleanup()
1482 r->query_reply.c->h2_stream = r->h2_stream; in mesh_send_reply()
1486 r->h2_stream->mesh_state = NULL; in mesh_send_reply()
1779 http2_stream_remove_mesh_state(r->h2_stream); in mesh_query_done()
1816 http2_stream_remove_mesh_state(r->h2_stream); in mesh_query_done()
2010 r->h2_stream = rep->c->h2_stream; in mesh_state_add_reply()
[all …]
H A Dmesh.h257 struct http2_stream* h2_stream; member
H A Dlisten_dnsport.h460 void http2_req_stream_clear(struct http2_stream* h2_stream);
/freebsd/contrib/unbound/util/
H A Dnetevent.h288 struct http2_stream* h2_stream; member
1026 struct http2_stream* h2_stream);
1030 void http2_stream_add_meshstate(struct http2_stream* h2_stream,
1034 void http2_stream_remove_mesh_state(struct http2_stream* h2_stream);
H A Dnetevent.c3173 struct http2_stream* h2_stream) argument
3175 if(h2_stream->mesh_state) {
3176 mesh_state_remove_reply(h2_stream->mesh, h2_stream->mesh_state,
3178 h2_stream->mesh_state = NULL;
3180 http2_req_stream_clear(h2_stream);
3181 free(h2_stream);
3189 struct http2_stream* h2_stream, *next; local
3192 for(h2_stream = h2_session->first_stream; h2_stream;) {
3193 next = h2_stream->next;
3194 http2_stream_delete(h2_session, h2_stream);
[all …]
/freebsd/contrib/unbound/doc/
H A DChangelog1281 h2_stream is NULL when not in use, for more initialisation.