diff options
author | Russ White <russ@riw.us> | 2024-04-16 21:51:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-16 21:51:12 +0200 |
commit | 5ef6a2bb54eacc35854e9db8dde71c406fb9364c (patch) | |
tree | 8dfe38843a42a06f3673824df4046addfed4a5e8 | |
parent | Merge pull request #15709 from chiragshah6/fdev2 (diff) | |
parent | isisd: The hold time of hello packets on a P2P link does not match the sendin... (diff) | |
download | frr-5ef6a2bb54eacc35854e9db8dde71c406fb9364c.tar.xz frr-5ef6a2bb54eacc35854e9db8dde71c406fb9364c.zip |
Merge pull request #15715 from zhou-run/202404092057
isisd: The hold time of hello packets on a P2P link does not match the sending interval.
-rw-r--r-- | isisd/isis_pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index 6f410d342..5be317018 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -2082,7 +2082,7 @@ static void send_hello_cb(struct event *thread) circuit->u.p2p.t_send_p2p_hello = NULL; send_hello(circuit, 1); send_hello_sched(circuit, ISIS_LEVEL1, - 1000 * circuit->hello_interval[1]); + 1000 * circuit->hello_interval[0]); return; } |