Home
last modified time | relevance | path

Searched refs:tcp_req_info (Results 1 – 9 of 9) sorted by relevance

/freebsd-head/contrib/unbound/services/
HDlisten_dnsport.h318 struct tcp_req_info { struct
378 struct tcp_req_info* tcp_req_info_create(struct sldns_buffer* spoolbuf);
385 void tcp_req_info_delete(struct tcp_req_info* req);
392 void tcp_req_info_clear(struct tcp_req_info* req);
400 void tcp_req_info_remove_mesh_state(struct tcp_req_info* req,
407 void tcp_req_info_handle_writedone(struct tcp_req_info* req);
413 void tcp_req_info_handle_readdone(struct tcp_req_info* req);
426 int tcp_req_info_add_meshstate(struct tcp_req_info* req,
433 void tcp_req_info_send_reply(struct tcp_req_info* req);
439 int tcp_req_info_handle_read_close(struct tcp_req_info* req);
HDmesh.c438 if(rep->c->tcp_req_info) { in mesh_new_client()
439 r_buffer = rep->c->tcp_req_info->spool_buffer; in mesh_new_client()
531 if(rep->c->tcp_req_info) { in mesh_new_client()
532 if(!tcp_req_info_add_meshstate(rep->c->tcp_req_info, mesh, s)) { in mesh_new_client()
1787 if(r->query_reply.c->tcp_req_info) { in mesh_query_done()
1788 r_buffer = r->query_reply.c->tcp_req_info->spool_buffer; in mesh_query_done()
1793 if(r->query_reply.c->tcp_req_info) { in mesh_query_done()
1794 tcp_req_info_remove_mesh_state(r->query_reply.c->tcp_req_info, mstate); in mesh_query_done()
2539 if(r->query_reply.c->tcp_req_info) in mesh_serve_expired_callback()
2540 r_buffer = r->query_reply.c->tcp_req_info->spool_buffer; in mesh_serve_expired_callback()
[all …]
HDlisten_dnsport.c2115 struct tcp_req_info*
2118 struct tcp_req_info* req = (struct tcp_req_info*)malloc(sizeof(*req)); in tcp_req_info_create()
2129 tcp_req_info_delete(struct tcp_req_info* req) in tcp_req_info_delete()
2139 void tcp_req_info_clear(struct tcp_req_info* req) in tcp_req_info_clear()
2174 tcp_req_info_remove_mesh_state(struct tcp_req_info* req, struct mesh_state* m) in tcp_req_info_remove_mesh_state()
2200 tcp_req_info_setup_listen(struct tcp_req_info* req) in tcp_req_info_setup_listen()
2239 tcp_req_info_pop_done(struct tcp_req_info* req) in tcp_req_info_pop_done()
2254 tcp_req_info_start_write_buf(struct tcp_req_info* req, uint8_t* buf, in tcp_req_info_start_write_buf()
2266 tcp_req_pickup_next_result(struct tcp_req_info* req) in tcp_req_pickup_next_result()
2279 tcp_req_info_handle_read_close(struct tcp_req_info* req) in tcp_req_info_handle_read_close()
[all …]
/freebsd-head/contrib/unbound/util/
HDnetevent.c3220 if((c_hdl->type == comm_tcp && c_hdl->tcp_req_info) ||
3344 if(c->tcp_req_info) {
3345 tcp_req_info_handle_writedone(c->tcp_req_info);
3371 if(c->tcp_req_info) {
3372 tcp_req_info_handle_readdone(c->tcp_req_info);
3609 if(c->tcp_req_info)
3610 return tcp_req_info_handle_read_close(c->tcp_req_info);
3677 if(c->tcp_req_info)
3678 return tcp_req_info_handle_read_close(c->tcp_req_info);
3738 if(c->tcp_req_info)
[all …]
HDnetevent.h403 struct tcp_req_info* tcp_req_info; member
/freebsd-head/contrib/unbound/testcode/
HDfake_event.c1961 int tcp_req_info_add_meshstate(struct tcp_req_info* ATTR_UNUSED(req), in tcp_req_info_add_meshstate()
1969 tcp_req_info_remove_mesh_state(struct tcp_req_info* ATTR_UNUSED(req), in tcp_req_info_remove_mesh_state()
/freebsd-head/contrib/unbound/daemon/
HDworker.c926 if(repinfo->c->tcp_req_info) { in reply_and_prefetch()
928 repinfo->c->tcp_req_info->spool_buffer, in reply_and_prefetch()
/freebsd-head/contrib/unbound/contrib/
HDfastrpz.patch3449 if(repinfo->c->tcp_req_info)
/freebsd-head/contrib/unbound/doc/
HDChangelog4026 - Fix #4227: pair event del and add for libevent for tcp_req_info.