1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Fixed pipe reload/refeed to properly propagate as route refresh to the other table

This commit is contained in:
Maria Matejka
2022-10-05 15:17:38 +02:00
parent 67256d5035
commit 7911148b22
2 changed files with 40 additions and 0 deletions

View File

@@ -20,7 +20,11 @@ struct pipe_proto {
struct proto p;
struct channel *pri;
struct channel *sec;
uint pri_flags;
uint sec_flags;
struct tbf rl_gen;
};
#define PIPE_FL_RR_BEGIN_PENDING 1 /* Route refresh should start with the first route notified */
#endif