Deleted Added
full compact
config_file.h (268839) config_file.h (276605)
1/*
2 * util/config_file.h - reads and stores the config file for unbound.
3 *
4 * Copyright (c) 2007, NLnet Labs. All rights reserved.
5 *
6 * This software is open source.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 291 unchanged lines hidden (view full) ---

300 /* minimal response when positive answer */
301 int minimal_responses;
302
303 /* RRSet roundrobin */
304 int rrset_roundrobin;
305
306 /* maximum UDP response size */
307 size_t max_udp_size;
1/*
2 * util/config_file.h - reads and stores the config file for unbound.
3 *
4 * Copyright (c) 2007, NLnet Labs. All rights reserved.
5 *
6 * This software is open source.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 291 unchanged lines hidden (view full) ---

300 /* minimal response when positive answer */
301 int minimal_responses;
302
303 /* RRSet roundrobin */
304 int rrset_roundrobin;
305
306 /* maximum UDP response size */
307 size_t max_udp_size;
308
309 /* DNS64 prefix */
310 char* dns64_prefix;
311
312 /* Synthetize all AAAA record despite the presence of an authoritative one */
313 int dns64_synthall;
314
315 /** true to enable dnstap support */
316 int dnstap;
317 /** dnstap socket path */
318 char* dnstap_socket_path;
319 /** true to send "identity" via dnstap */
320 int dnstap_send_identity;
321 /** true to send "version" via dnstap */
322 int dnstap_send_version;
323 /** dnstap "identity", hostname is used if "". */
324 char* dnstap_identity;
325 /** dnstap "version", package version is used if "". */
326 char* dnstap_version;
327
328 /** true to log dnstap RESOLVER_QUERY message events */
329 int dnstap_log_resolver_query_messages;
330 /** true to log dnstap RESOLVER_RESPONSE message events */
331 int dnstap_log_resolver_response_messages;
332 /** true to log dnstap CLIENT_QUERY message events */
333 int dnstap_log_client_query_messages;
334 /** true to log dnstap CLIENT_RESPONSE message events */
335 int dnstap_log_client_response_messages;
336 /** true to log dnstap FORWARDER_QUERY message events */
337 int dnstap_log_forwarder_query_messages;
338 /** true to log dnstap FORWARDER_RESPONSE message events */
339 int dnstap_log_forwarder_response_messages;
308};
309
310/**
311 * Stub config options
312 */
313struct config_stub {
314 /** next in list */
315 struct config_stub* next;

--- 357 unchanged lines hidden ---
340};
341
342/**
343 * Stub config options
344 */
345struct config_stub {
346 /** next in list */
347 struct config_stub* next;

--- 357 unchanged lines hidden ---