summaryrefslogtreecommitdiff
path: root/server/stables.c
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2008-11-03 18:13:58 +0000
committerDavid Hankins <dhankins@isc.org>2008-11-03 18:13:58 +0000
commitfbcee149f83b6b7272654675b65c786038bb8933 (patch)
tree39ec5c723c5c2f155d9a7805ee83a47aaaebd504 /server/stables.c
parent783259b1cced2dc577cc2159990389235b36f858 (diff)
downloadisc-dhcp-fbcee149f83b6b7272654675b65c786038bb8933.tar.gz
- Delayed-ack is now a compile-time option, compiled out by default.
This feature is simply too experimental for right now, and causes some problems to some failover installations. We will revisit this in future releases. [ISC-Bugs #18832]
Diffstat (limited to 'server/stables.c')
-rw-r--r--server/stables.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/stables.c b/server/stables.c
index d2118166..c4215baa 100644
--- a/server/stables.c
+++ b/server/stables.c
@@ -239,8 +239,11 @@ static struct option server_options[] = {
{ "dhcpv6-pid-file-name", "t", &server_universe, 55, 1 },
{ "limit-addrs-per-ia", "L", &server_universe, 56, 1 },
{ "limit-prefs-per-ia", "L", &server_universe, 57, 1 },
+/* Assert a configuration parsing error if delayed-ack isn't compiled in. */
+#if defined(DELAYED_ACK)
{ "delayed-ack", "S", &server_universe, 58, 1 },
{ "max-ack-delay", "L", &server_universe, 59, 1 },
+#endif
{ NULL, NULL, NULL, 0, 0 }
};