diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-05-31 15:24:27 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-05-31 15:24:27 +0200 |
commit | 23ac9e9a9eefe13918ee7f21a1d0f271a44d9efd (patch) | |
tree | 8216b9e5755798e342bf7a81dff03bc666ee97d9 /sysdep/unix | |
parent | 23e563d86b412632644bdc4a886b0b7fb60e5175 (diff) | |
download | bird-23ac9e9a9eefe13918ee7f21a1d0f271a44d9efd.tar bird-23ac9e9a9eefe13918ee7f21a1d0f271a44d9efd.zip |
Changes pipes to transfer all routes between routing table, not just optimal routes.
Diffstat (limited to 'sysdep/unix')
-rw-r--r-- | sysdep/unix/krt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index a60e7f9..0b55b40 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -875,6 +875,7 @@ krt_init(struct proto_config *c) { struct krt_proto *p = proto_new(c, sizeof(struct krt_proto)); + p->p.accept_ra_types = RA_OPTIMAL; p->p.rt_notify = krt_notify; p->p.min_scope = SCOPE_HOST; return &p->p; |