diff options
author | Martin Mares <mj@ucw.cz> | 1999-12-08 15:16:13 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-12-08 15:16:13 +0100 |
commit | 0da472d7e867e31c49fccc4ee45df3ef47c29c9b (patch) | |
tree | c78cc2aa5acb075038e0c23eecc95d035260dda5 /nest/proto.c | |
parent | dff1f5791794102e4e6880516545145c5036873f (diff) | |
download | bird-0da472d7e867e31c49fccc4ee45df3ef47c29c9b.tar bird-0da472d7e867e31c49fccc4ee45df3ef47c29c9b.zip |
Except for special protocols (nowadays only the kernel syncer), don't
export host and link scope routes.
Diffstat (limited to 'nest/proto.c')
-rw-r--r-- | nest/proto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c index ab7de0f..a58c3f7 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -91,6 +91,7 @@ proto_new(struct proto_config *c, unsigned size) p->table = c->table->table; p->in_filter = c->in_filter; p->out_filter = c->out_filter; + p->min_scope = SCOPE_SITE; c->proto = p; return p; } |