diff options
author | Maria Matejka <mq@ucw.cz> | 2023-04-02 19:35:35 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-04-04 17:00:59 +0200 |
commit | e33902e15cb5399900fd346b4dba522ad821f0f0 (patch) | |
tree | 9871b9d131b4445871078f6d42cc86d0c507485a /proto/bgp/bgp.h | |
parent | 836e857b3098f8962c621a33f7ae5b532cf512f3 (diff) |
BGP now has its own loop
Diffstat (limited to 'proto/bgp/bgp.h')
-rw-r--r-- | proto/bgp/bgp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bgp/bgp.h b/proto/bgp/bgp.h index b9c1192c..621e1bc5 100644 --- a/proto/bgp/bgp.h +++ b/proto/bgp/bgp.h @@ -547,7 +547,7 @@ bgp_parse_error(struct bgp_parse_state *s, uint subcode) } -void bgp_start_timer(timer *t, uint value); +void bgp_start_timer(struct bgp_proto *p, timer *t, uint value); void bgp_check_config(struct bgp_config *c); void bgp_error(struct bgp_conn *c, unsigned code, unsigned subcode, byte *data, int len); void bgp_close_conn(struct bgp_conn *c); |