summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nsd/options.c
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2016-06-24 08:34:02 +0000
committerflorian <florian@openbsd.org>2016-06-24 08:34:02 +0000
commit275a8d899e6ba7e61052b65d3c7abe38db9a32dc (patch)
tree5ce9fc7264a20d348a71d21e01af2edd1700ec8c /usr.sbin/nsd/options.c
parentAvoid multiple evaluation of macro arguments in softclock() (diff)
downloadwireguard-openbsd-275a8d899e6ba7e61052b65d3c7abe38db9a32dc.tar.xz
wireguard-openbsd-275a8d899e6ba7e61052b65d3c7abe38db9a32dc.zip
Update to 4.1.10
Testing by millert@, sthen@ and me. came up with the same diff & OK sthen@
Diffstat (limited to 'usr.sbin/nsd/options.c')
-rw-r--r--usr.sbin/nsd/options.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/nsd/options.c b/usr.sbin/nsd/options.c
index 88968518a86..349e271b422 100644
--- a/usr.sbin/nsd/options.c
+++ b/usr.sbin/nsd/options.c
@@ -49,6 +49,7 @@ nsd_options_create(region_type* region)
opt->keys = rbtree_create(region, rbtree_strcmp);
opt->ip_addresses = NULL;
opt->ip_transparent = 0;
+ opt->ip_freebind = 0;
opt->debug_mode = 0;
opt->verbosity = 0;
opt->hide_version = 0;
@@ -65,6 +66,8 @@ nsd_options_create(region_type* region)
opt->tcp_count = 100;
opt->tcp_query_count = 0;
opt->tcp_timeout = TCP_TIMEOUT;
+ opt->tcp_mss = 0;
+ opt->outgoing_tcp_mss = 0;
opt->ipv4_edns_size = EDNS_MAX_MESSAGE_LEN;
opt->ipv6_edns_size = EDNS_MAX_MESSAGE_LEN;
opt->pidfile = PIDFILE;