diff options
author | Donald Sharp <sharpd@nvidia.com> | 2023-08-27 01:36:34 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-09-09 22:28:05 +0200 |
commit | bdb832b489fef060c7d58d2e04a203098a3cffc4 (patch) | |
tree | c86f3611dccc10aa9e6847fe6fed91734d7e83f7 /bgpd/bgpd.h | |
parent | bgpd: move t_start into peer_connection (diff) | |
download | frr-bdb832b489fef060c7d58d2e04a203098a3cffc4.tar.xz frr-bdb832b489fef060c7d58d2e04a203098a3cffc4.zip |
bgpd: t_holdtime move to peer_connection
The t_holdtime event pointer belongs in the peer connection
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'bgpd/bgpd.h')
-rw-r--r-- | bgpd/bgpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index 46d7aca6a..b68260799 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -1141,6 +1141,7 @@ struct peer_connection { struct event *t_connect; struct event *t_delayopen; struct event *t_start; + struct event *t_holdtime; struct event *t_process_packet; struct event *t_process_packet_error; @@ -1553,7 +1554,6 @@ struct peer { /* Threads. */ struct event *t_connect_check_r; struct event *t_connect_check_w; - struct event *t_holdtime; struct event *t_routeadv; struct event *t_pmax_restart; struct event *t_gr_restart; |