diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-09 06:12:05 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-09 06:12:05 +0000 |
commit | d89be5ff25e1957448fcfdffd40c6b46b353c77d (patch) | |
tree | 0af1751c0ca97e19f9456a33c40055dc17f1587a /usr.sbin/ospf6d/ospf6.h | |
parent | 9eaa009765ee2b2f9a530a4c1ebdccb72e198244 (diff) |
The router dead_interval switched from 32bit to a 16bit value in OSPFv3.
OK norby@
Diffstat (limited to 'usr.sbin/ospf6d/ospf6.h')
-rw-r--r-- | usr.sbin/ospf6d/ospf6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/ospf6.h b/usr.sbin/ospf6d/ospf6.h index cd92a93f534..0865624d386 100644 --- a/usr.sbin/ospf6d/ospf6.h +++ b/usr.sbin/ospf6d/ospf6.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf6.h,v 1.1 2007/10/08 10:44:50 norby Exp $ */ +/* $OpenBSD: ospf6.h,v 1.2 2007/10/09 06:12:04 claudio Exp $ */ /* * Copyright (c) 2004, 2005, 2007 Esben Norby <norby@openbsd.org> @@ -46,7 +46,7 @@ #define DEFAULT_RTR_DEAD_TIME 40 #define MIN_RTR_DEAD_TIME 2 -#define MAX_RTR_DEAD_TIME 2147483647 +#define MAX_RTR_DEAD_TIME 65535 #define DEFAULT_RXMT_INTERVAL 5 #define MIN_RXMT_INTERVAL 5 |