]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
tcp-only and tcp-keepalive where out of alphabetical order
authorMark Andrews <marka@isc.org>
Mon, 14 Aug 2017 07:00:02 +0000 (07:00 +0000)
committerMark Andrews <marka@isc.org>
Mon, 14 Aug 2017 07:00:02 +0000 (07:00 +0000)
lib/isccfg/namedconf.c

index 6ae4978ec358d95a8c51c782506c7782ba1fa7c4..a4a346d2ce8fec77b368cf2d42ab7bfbb0ede011 100644 (file)
@@ -2206,8 +2206,6 @@ server_clauses[] = {
        { "edns-version", &cfg_type_uint32, 0 },
        { "keys", &cfg_type_server_key_kludge, 0 },
        { "max-udp-size", &cfg_type_uint32, 0 },
-       { "tcp-only", &cfg_type_boolean, 0 },
-       { "tcp-keepalive", &cfg_type_boolean, 0 },
        { "notify-source", &cfg_type_sockaddr4wild, 0 },
        { "notify-source-v6", &cfg_type_sockaddr6wild, 0 },
        { "padding", &cfg_type_uint32, 0 },
@@ -2220,6 +2218,8 @@ server_clauses[] = {
        { "request-sit", &cfg_type_boolean, CFG_CLAUSEFLAG_OBSOLETE },
        { "send-cookie", &cfg_type_boolean, 0 },
        { "support-ixfr", &cfg_type_boolean, CFG_CLAUSEFLAG_OBSOLETE },
+       { "tcp-keepalive", &cfg_type_boolean, 0 },
+       { "tcp-only", &cfg_type_boolean, 0 },
        { "transfer-format", &cfg_type_transferformat, 0 },
        { "transfer-source", &cfg_type_sockaddr4wild, 0 },
        { "transfer-source-v6", &cfg_type_sockaddr6wild, 0 },