diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-01-18 16:04:13 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-01-18 16:04:13 +0900 |
commit | ec278710f10c2cae7d6b3e393aa957edfd536181 (patch) | |
tree | cb8e6ec6c38ceab014d98d3ab95f159bc9d10411 /config/bgp_configs.go | |
parent | a9e55d3bd75fd5dd633fee1ff2c9d45d6d6447ee (diff) |
server: support idlehold time after reset
After resetting a peer, the peer will remain idle for idlehold time
(by default 30 seconds). It can be configured via
IdleHoldTImeAfterReset.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'config/bgp_configs.go')
-rw-r--r-- | config/bgp_configs.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/bgp_configs.go b/config/bgp_configs.go index c994faac..f33fe727 100644 --- a/config/bgp_configs.go +++ b/config/bgp_configs.go @@ -472,6 +472,8 @@ type TimersType struct { // original -> bgp:send-update-delay //send-update-delay's original type is decimal64 SendUpdateDelay float64 + + IdleHoldTImeAfterReset float64 } //struct for container bgp-af-common-state |