Home
last modified time | relevance | path

Searched refs:read_frame (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/unbound/dnstap/
H A Ddtstream.c1112 dtio->read_frame.frame_len = ntohl(dtio->read_frame.frame_len); in dtio_read_accept_frame()
1119 dtio->read_frame.buf = calloc(1, dtio->read_frame.frame_len); in dtio_read_accept_frame()
1120 dtio->read_frame.buf_cap = dtio->read_frame.frame_len; in dtio_read_accept_frame()
1121 if(!dtio->read_frame.buf) { in dtio_read_accept_frame()
1127 if(dtio->read_frame.buf_count < dtio->read_frame.frame_len) { in dtio_read_accept_frame()
1131 dtio->read_frame.buf_count, in dtio_read_accept_frame()
1132 dtio->read_frame.buf_cap- in dtio_read_accept_frame()
1133 dtio->read_frame.buf_count); in dtio_read_accept_frame()
1137 dtio->read_frame.buf_count, in dtio_read_accept_frame()
1138 dtio->read_frame.buf_cap- in dtio_read_accept_frame()
[all …]
H A Ddtstream.h215 struct dt_frame_read_buf read_frame; member