summaryrefslogtreecommitdiff
path: root/proto/pipe/pipe.h
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2022-10-05 15:17:38 +0200
committerMaria Matejka <mq@ucw.cz>2022-10-05 15:17:38 +0200
commit7911148b22a9efb1fd200b23e3c71cb1df3a0620 (patch)
tree063a8de3755203f3cc9b6be42b614bf56bd65d73 /proto/pipe/pipe.h
parent67256d50359d42aca4e64bb1cb5dcb3c63669578 (diff)
Fixed pipe reload/refeed to properly propagate as route refresh to the other table
Diffstat (limited to 'proto/pipe/pipe.h')
-rw-r--r--proto/pipe/pipe.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/proto/pipe/pipe.h b/proto/pipe/pipe.h
index a6534e1c..501b8565 100644
--- a/proto/pipe/pipe.h
+++ b/proto/pipe/pipe.h
@@ -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