diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-06 20:41:56 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-06 20:41:56 +0000 |
commit | 3f95b1dcb49941668508d394652ad6c7e87a3387 (patch) | |
tree | cf31f5675d0148798d52eb46b34bbde1592d9cbd /usr.sbin/bgpd/bgpd.h | |
parent | d219c9759f99a1cb0bac41fd7beb1479156d0077 (diff) |
allow holdtime and holdtime min to be configuered per peer
ok claudio@
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 8ee24bb0327..488bc9f6683 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.55 2004/01/06 03:43:50 henning Exp $ */ +/* $OpenBSD: bgpd.h,v 1.56 2004/01/06 20:41:55 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -112,6 +112,8 @@ struct peer_config { u_int8_t ebgp; /* 1 = ebgp, 0 = ibgp */ u_int8_t distance; /* 1 = direct, >1 = multihop */ u_int8_t passive; + u_int16_t holdtime; + u_int16_t min_holdtime; enum reconf_action reconf_action; }; |