diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-01-10 13:07:33 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-01-10 13:07:33 +0100 |
commit | b662290f40ea0fa0b1a1ba283e50e833724f2050 (patch) | |
tree | 92c2e42f231e8e8a4294117faa087f96de65631e /proto/pipe/pipe.c | |
parent | 79b4e12e6032faf6bb1f3feac385bd36ee53019e (diff) |
Separate import and receive limits.
They have different behavior w.r.t. filtered routes that are kept.
Diffstat (limited to 'proto/pipe/pipe.c')
-rw-r--r-- | proto/pipe/pipe.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/proto/pipe/pipe.c b/proto/pipe/pipe.c index 6099d284..51be3c7d 100644 --- a/proto/pipe/pipe.c +++ b/proto/pipe/pipe.c @@ -200,6 +200,11 @@ pipe_postconfig(struct proto_config *C) cf_error("Name of peer routing table not specified"); if (c->peer == C->table) cf_error("Primary table and peer table must be different"); + + if (C->in_keep_filtered) + cf_error("Pipe protocol prohibits keeping filtered routes"); + if (C->rx_limit) + cf_error("Pipe protocol does not support receive limits"); } extern int proto_reconfig_type; |