diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-08-26 19:13:56 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-09-09 16:28:05 -0400 |
| commit | a8888edd42196fb410cf7ef8013f355dd9d02666 (patch) | |
| tree | 7631cae899a292811926f007c88e4e18ad651f2e /bgpd/bgpd.h | |
| parent | 4aec430ce30fc63b6da8f4fa0223e58322989274 (diff) | |
bgpd: t_connect conversion from peer to peer_connect
Move t_connect into struct peer_connect
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 dd8096c574..5321812e17 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -1138,6 +1138,7 @@ struct peer_connection { struct event *t_read; struct event *t_write; + struct event *t_connect; struct event *t_process_packet; struct event *t_process_packet_error; @@ -1551,7 +1552,6 @@ struct peer { struct event *t_start; struct event *t_connect_check_r; struct event *t_connect_check_w; - struct event *t_connect; struct event *t_holdtime; struct event *t_routeadv; struct event *t_delayopen; |
