diff options
author | Martin Mares <mj@ucw.cz> | 1999-03-26 22:50:43 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-03-26 22:50:43 +0100 |
commit | 7dc4827c968053e45bcb7f145e9986eeb20c993b (patch) | |
tree | 81363b40e7ed12b7a40d00752680bd694afcdf0d /proto/rip/rip.c | |
parent | 7e5f5ffdda7232048c4baf3fdec358afb494a29d (diff) | |
download | bird-7dc4827c968053e45bcb7f145e9986eeb20c993b.tar bird-7dc4827c968053e45bcb7f145e9986eeb20c993b.zip |
Added everything protocols need to know about multiple routing tables,
i.e. struct proto now contains field 'table' pointing to routing table
the protocol is attached to. Use this instead of &master_table.
Modified all protocols except the kernel syncer to use this field.
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 249026d..060446f 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -226,7 +226,7 @@ advertise_entry( struct proto *p, struct rip_block *b, ip_addr whotoldme ) log( L_ERR "%I asked me to route %I/%I, but that is not valid netmask.", A.from, b->network, b->netmask ); return; } - n = net_get( &master_table, 0, b->network, ipa_mklen( b->netmask )); + n = net_get( p->table, 0, b->network, ipa_mklen( b->netmask )); r = rte_get_temp(a); r->u.rip.metric = ntohl(b->metric) + rif->metric; if (r->u.rip.metric > P_CF->infinity) r->u.rip.metric = P_CF->infinity; |