summaryrefslogtreecommitdiff
path: root/proto/pipe/config.Y
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2020-05-01 22:26:24 +0200
committerMaria Matejka <mq@ucw.cz>2021-11-09 19:20:41 +0100
commit56c8f2f03a8631417dc3b730625c08ffca42ead2 (patch)
tree665f5a2c3e0acfe8872c741a69c2485ced3e2700 /proto/pipe/config.Y
parent1c2f66f2bd9b2996c8cba0604e7ac38738399000 (diff)
Nest: Route generations and explicit tracking route propagion through pipes
Diffstat (limited to 'proto/pipe/config.Y')
-rw-r--r--proto/pipe/config.Y7
1 files changed, 6 insertions, 1 deletions
diff --git a/proto/pipe/config.Y b/proto/pipe/config.Y
index 1202c169..c869de9f 100644
--- a/proto/pipe/config.Y
+++ b/proto/pipe/config.Y
@@ -16,7 +16,7 @@ CF_DEFINES
CF_DECLS
-CF_KEYWORDS(PIPE, PEER, TABLE)
+CF_KEYWORDS(PIPE, PEER, TABLE, MAX, GENERATION)
CF_GRAMMAR
@@ -25,6 +25,7 @@ proto: pipe_proto '}' { this_channel = NULL; } ;
pipe_proto_start: proto_start PIPE
{
this_proto = proto_config_new(&proto_pipe, $1);
+ PIPE_CFG->max_generation = 16;
}
proto_name
{
@@ -41,6 +42,10 @@ pipe_proto:
| pipe_proto proto_item ';'
| pipe_proto channel_item_ ';'
| pipe_proto PEER TABLE rtable ';' { PIPE_CFG->peer = $4; }
+ | pipe_proto MAX GENERATION expr ';' {
+ if (($4 < 1) || ($4 > 254)) cf_error("Max generation must be in range 1..254, got %u", $4);
+ PIPE_CFG->max_generation = $4;
+ }
;
CF_CODE