diff options
author | David Hankins <dhankins@isc.org> | 2010-02-03 23:25:25 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2010-02-03 23:25:25 +0000 |
commit | fdfebedf3e1e048d6f12a2332a72156c28ace88b (patch) | |
tree | 01347d8bf5ee2fd5c28f8e3cd0a87fba3976a246 /includes/dhctoken.h | |
parent | 176c2a7d2d6f65597ce9957456b1b3371b5fd3f9 (diff) | |
download | isc-dhcp-fdfebedf3e1e048d6f12a2332a72156c28ace88b.tar.gz |
- An optimization described in the failover protocol draft is now included,
which permits a DHCP server operating in communications-interrupted state
to 'rewind' a lease to the state most recently transmitted to its peer,
greatly increasing a server's endurance in communications-interrupted.
This is supported using a new 'rewind state' record on the dhcpd.leases
entry for each lease. [ISC-Bugs #19601]
Diffstat (limited to 'includes/dhctoken.h')
-rw-r--r-- | includes/dhctoken.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/dhctoken.h b/includes/dhctoken.h index 54793449..6cfa04b0 100644 --- a/includes/dhctoken.h +++ b/includes/dhctoken.h @@ -356,7 +356,8 @@ enum dhcp_token { ANYCAST_MAC = 659, CONFLICT_DONE = 660, AUTO_PARTNER_DOWN = 661, - GETHOSTNAME = 662 + GETHOSTNAME = 662, + REWIND = 663 }; #define is_identifier(x) ((x) >= FIRST_TOKEN && \ |