summaryrefslogtreecommitdiff
path: root/bgpd/bgpd.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2023-08-26 19:36:34 -0400
committerDonald Sharp <sharpd@nvidia.com>2023-09-09 16:28:05 -0400
commitbdb832b489fef060c7d58d2e04a203098a3cffc4 (patch)
treec86f3611dccc10aa9e6847fe6fed91734d7e83f7 /bgpd/bgpd.h
parent904c98c4d99fb054be928b16b26a9d58b1cfb03c (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h
index 46d7aca6ad..b682607994 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;