Symbol: dt_env
sbin/unwind/libunbound/daemon/worker.h
138
struct dt_env dtenv;
sbin/unwind/libunbound/dnstap/dnstap.h
107
dt_apply_cfg(struct dt_env *env, struct config_file *cfg);
sbin/unwind/libunbound/dnstap/dnstap.h
114
void dt_apply_logcfg(struct dt_env *env, struct config_file *cfg);
sbin/unwind/libunbound/dnstap/dnstap.h
123
dt_init(struct dt_env *env, struct comm_base* base);
sbin/unwind/libunbound/dnstap/dnstap.h
128
void dt_deinit(struct dt_env *env);
sbin/unwind/libunbound/dnstap/dnstap.h
135
dt_delete(struct dt_env *env);
sbin/unwind/libunbound/dnstap/dnstap.h
147
dt_msg_send_client_query(struct dt_env *env,
sbin/unwind/libunbound/dnstap/dnstap.h
164
dt_msg_send_client_response(struct dt_env *env,
sbin/unwind/libunbound/dnstap/dnstap.h
184
dt_msg_send_outside_query(struct dt_env *env,
sbin/unwind/libunbound/dnstap/dnstap.h
209
dt_msg_send_outside_response(struct dt_env *env,
sbin/unwind/libunbound/dnstap/dnstap.h
98
struct dt_env *
sbin/unwind/libunbound/services/listen_dnsport.c
1540
struct dt_env* dtenv,
sbin/unwind/libunbound/services/listen_dnsport.h
218
struct dt_env* dtenv,
sbin/unwind/libunbound/services/outside_network.c
1679
void* sslctx, int delayclose, int tls_use_sni, struct dt_env* dtenv,
sbin/unwind/libunbound/services/outside_network.h
148
struct dt_env* dtenv;
sbin/unwind/libunbound/services/outside_network.h
571
void* sslctx, int delayclose, int tls_use_sni, struct dt_env *dtenv,
sbin/unwind/libunbound/services/outside_network.h
63
struct dt_env;
sbin/unwind/libunbound/util/netevent.c
6651
send_reply_dnstap(struct dt_env* dtenv,
sbin/unwind/libunbound/util/netevent.c
6701
struct dt_env* dtenv =
sbin/unwind/libunbound/util/netevent.h
302
struct dt_env* dtenv;
usr.sbin/nsd/dnstap/dnstap.c
110
dt_msg_init(const struct dt_env *env,
usr.sbin/nsd/dnstap/dnstap.c
522
struct dt_env *
usr.sbin/nsd/dnstap/dnstap.c
530
struct dt_env *env;
usr.sbin/nsd/dnstap/dnstap.c
548
env = (struct dt_env *) calloc(1, sizeof(struct dt_env));
usr.sbin/nsd/dnstap/dnstap.c
629
dt_apply_identity(struct dt_env *env, struct nsd_options *cfg)
usr.sbin/nsd/dnstap/dnstap.c
653
dt_apply_version(struct dt_env *env, struct nsd_options *cfg)
usr.sbin/nsd/dnstap/dnstap.c
670
dt_apply_cfg(struct dt_env *env, struct nsd_options *cfg)
usr.sbin/nsd/dnstap/dnstap.c
690
dt_init(struct dt_env *env)
usr.sbin/nsd/dnstap/dnstap.c
699
dt_delete(struct dt_env *env)
usr.sbin/nsd/dnstap/dnstap.c
826
dt_msg_send_auth_query(struct dt_env *env,
usr.sbin/nsd/dnstap/dnstap.c
872
dt_msg_send_auth_response(struct dt_env *env,
usr.sbin/nsd/dnstap/dnstap.c
98
dt_send(const struct dt_env *env, void *buf, size_t len_buf)
usr.sbin/nsd/dnstap/dnstap.h
106
dt_apply_cfg(struct dt_env *env, struct nsd_options *cfg);
usr.sbin/nsd/dnstap/dnstap.h
114
dt_init(struct dt_env *env);
usr.sbin/nsd/dnstap/dnstap.h
121
dt_delete(struct dt_env *env);
usr.sbin/nsd/dnstap/dnstap.h
135
dt_msg_send_auth_query(struct dt_env *env,
usr.sbin/nsd/dnstap/dnstap.h
157
dt_msg_send_auth_response(struct dt_env *env,
usr.sbin/nsd/dnstap/dnstap.h
95
struct dt_env *
usr.sbin/nsd/dnstap/dnstap_collector.c
206
dt_submit_content(struct dt_env* dt_env, struct buffer* buf)
usr.sbin/nsd/dnstap/dnstap_collector.c
248
dt_msg_send_auth_response(dt_env, &local_addr, &addr, is_tcp, zone,
usr.sbin/nsd/dnstap/dnstap_collector.c
251
dt_msg_send_auth_query(dt_env, &local_addr, &addr, is_tcp, zone,
usr.sbin/nsd/dnstap/dnstap_collector.c
273
if(dt_input->dt_collector->dt_env) {
usr.sbin/nsd/dnstap/dnstap_collector.c
274
dt_submit_content(dt_input->dt_collector->dt_env,
usr.sbin/nsd/dnstap/dnstap_collector.c
297
dt_col->dt_env = dt_create(nsd->options->dnstap_socket_path,
usr.sbin/nsd/dnstap/dnstap_collector.c
303
if(!dt_col->dt_env) {
usr.sbin/nsd/dnstap/dnstap_collector.c
307
dt_apply_cfg(dt_col->dt_env, nsd->options);
usr.sbin/nsd/dnstap/dnstap_collector.c
308
dt_init(dt_col->dt_env);
usr.sbin/nsd/dnstap/dnstap_collector.c
315
dt_delete(dt_col->dt_env);
usr.sbin/nsd/dnstap/dnstap_collector.c
46
dt_col->dt_env = NULL;
usr.sbin/nsd/dnstap/dnstap_collector.h
12
struct dt_env;
usr.sbin/nsd/dnstap/dnstap_collector.h
26
struct dt_env* dt_env;
usr.sbin/unbound/daemon/daemon.h
144
struct dt_env* dtenv;
usr.sbin/unbound/daemon/daemon.h
68
struct dt_env;
usr.sbin/unbound/daemon/worker.c
2184
struct dt_env* dtenv = &worker->dtenv;
usr.sbin/unbound/daemon/worker.c
2246
memcpy(&worker->dtenv, worker->daemon->dtenv, sizeof(struct dt_env));
usr.sbin/unbound/daemon/worker.h
138
struct dt_env dtenv;
usr.sbin/unbound/dnstap/dnstap.c
115
dt_send(const struct dt_env *env, void *buf, size_t len_buf)
usr.sbin/unbound/dnstap/dnstap.c
121
dt_msg_init(const struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.c
155
struct dt_env *
usr.sbin/unbound/dnstap/dnstap.c
158
struct dt_env *env;
usr.sbin/unbound/dnstap/dnstap.c
171
env = (struct dt_env *) calloc(1, sizeof(struct dt_env));
usr.sbin/unbound/dnstap/dnstap.c
192
dt_apply_identity(struct dt_env *env, struct config_file *cfg)
usr.sbin/unbound/dnstap/dnstap.c
219
dt_apply_version(struct dt_env *env, struct config_file *cfg)
usr.sbin/unbound/dnstap/dnstap.c
239
dt_apply_logcfg(struct dt_env *env, struct config_file *cfg)
usr.sbin/unbound/dnstap/dnstap.c
280
dt_apply_cfg(struct dt_env *env, struct config_file *cfg)
usr.sbin/unbound/dnstap/dnstap.c
291
dt_init(struct dt_env *env, struct comm_base* base)
usr.sbin/unbound/dnstap/dnstap.c
308
dt_deinit(struct dt_env* env)
usr.sbin/unbound/dnstap/dnstap.c
315
dt_delete(struct dt_env *env)
usr.sbin/unbound/dnstap/dnstap.c
446
dt_msg_send_client_query(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.c
488
dt_msg_send_client_response(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.c
526
dt_msg_send_outside_query(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.c
580
dt_msg_send_outside_response(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.c
91
dt_sample_rate_limited(struct dt_env* env)
usr.sbin/unbound/dnstap/dnstap.h
107
dt_apply_cfg(struct dt_env *env, struct config_file *cfg);
usr.sbin/unbound/dnstap/dnstap.h
114
void dt_apply_logcfg(struct dt_env *env, struct config_file *cfg);
usr.sbin/unbound/dnstap/dnstap.h
123
dt_init(struct dt_env *env, struct comm_base* base);
usr.sbin/unbound/dnstap/dnstap.h
128
void dt_deinit(struct dt_env *env);
usr.sbin/unbound/dnstap/dnstap.h
135
dt_delete(struct dt_env *env);
usr.sbin/unbound/dnstap/dnstap.h
147
dt_msg_send_client_query(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.h
164
dt_msg_send_client_response(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.h
184
dt_msg_send_outside_query(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.h
209
dt_msg_send_outside_response(struct dt_env *env,
usr.sbin/unbound/dnstap/dnstap.h
98
struct dt_env *
usr.sbin/unbound/services/listen_dnsport.c
1540
struct dt_env* dtenv,
usr.sbin/unbound/services/listen_dnsport.h
218
struct dt_env* dtenv,
usr.sbin/unbound/services/outside_network.c
1679
void* sslctx, int delayclose, int tls_use_sni, struct dt_env* dtenv,
usr.sbin/unbound/services/outside_network.h
148
struct dt_env* dtenv;
usr.sbin/unbound/services/outside_network.h
571
void* sslctx, int delayclose, int tls_use_sni, struct dt_env *dtenv,
usr.sbin/unbound/services/outside_network.h
63
struct dt_env;
usr.sbin/unbound/testcode/fake_event.c
1135
struct dt_env* ATTR_UNUSED(dtenv), int ATTR_UNUSED(udp_connect),
usr.sbin/unbound/testcode/fake_event.c
959
struct dt_env* ATTR_UNUSED(dtenv),
usr.sbin/unbound/util/netevent.c
6651
send_reply_dnstap(struct dt_env* dtenv,
usr.sbin/unbound/util/netevent.c
6701
struct dt_env* dtenv =
usr.sbin/unbound/util/netevent.h
302
struct dt_env* dtenv;