2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

- 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]
This commit is contained in:
David Hankins
2008-11-03 18:13:58 +00:00
parent 783259b1cc
commit fbcee149f8
5 changed files with 45 additions and 7 deletions

View File

@@ -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 }
};