summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2018-09-26 11:10:16 -0400
committerThomas Markwalder <tmark@isc.org>2018-09-26 11:10:16 -0400
commita5b21e16ff3a58d2262eddfffc4e8937379b016f (patch)
treef8f8919930c6a06e0fe555369c27e49c807f0090 /includes
parentcce04313d9f88d3c4372555651daf78a9c771ce2 (diff)
downloadisc-dhcp-a5b21e16ff3a58d2262eddfffc4e8937379b016f.tar.gz
[master] Added configuration parameter, ping-cltt-secs (v4 operation only)
Merges in rt36283.
Diffstat (limited to 'includes')
-rw-r--r--includes/dhcpd.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/dhcpd.h b/includes/dhcpd.h
index 5930e6ad..b5a25418 100644
--- a/includes/dhcpd.h
+++ b/includes/dhcpd.h
@@ -815,11 +815,17 @@ struct lease_state {
#define SV_RELEASE_ON_ROAM 95
#define SV_LOCAL_ADDRESS6 96
#define SV_BIND_LOCAL_ADDRESS6 97
+#define SV_PING_CLTT_SECS 98
#if !defined (DEFAULT_PING_TIMEOUT)
# define DEFAULT_PING_TIMEOUT 1
#endif
+#if !defined (DEFAULT_PING_CLTT_SECS)
+# define DEFAULT_PING_CLTT_SECS 60 /* in seconds */
+#endif
+
+
#if !defined (DEFAULT_DELAYED_ACK)
# define DEFAULT_DELAYED_ACK 0 /* default 0 disables delayed acking */
#endif