summaryrefslogtreecommitdiffstats
path: root/proto/rip
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1998-10-15 17:12:24 +0200
committerPavel Machek <pavel@ucw.cz>1998-10-15 17:12:24 +0200
commit8333431c4d0d7dcf065938e21440b4ce20cb8f8f (patch)
treef1ee02cd3c607dab737fd0bc0b7b81fa5ad2c7d0 /proto/rip
parent93f1c532e99cddb5575075313c0707bcd4758f07 (diff)
downloadbird-8333431c4d0d7dcf065938e21440b4ce20cb8f8f.tar
bird-8333431c4d0d7dcf065938e21440b4ce20cb8f8f.zip
Rip: rip_rta_same added.
Diffstat (limited to 'proto/rip')
-rw-r--r--proto/rip/rip.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index e471169..6085967 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -411,6 +411,7 @@ rip_start(struct proto *p)
P->timer->recurrent = RIP_TIME;
P->timer->hook = rip_timer;
tm_start( P->timer, 5 );
+ CHK_MAGIC;
debug( "RIP: ...done\n");
}
@@ -446,10 +447,13 @@ rip_if_notify(struct proto *p, unsigned c, struct iface *old, struct iface *new)
static void
rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte *old)
{
- debug( "rip: new entry came\n" );
+ debug( "rip: new entry came: " );
+ CHK_MAGIC;
if (old) {
struct rip_entry *e = find_entry( p, net->n.prefix, net->n.pxlen );
+
+ debug( "deleting old\n" );
if (!e)
log( L_ERR "Deleting nonexistent entry?!\n" );
@@ -459,6 +463,7 @@ rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte
if (new) {
struct rip_entry *e = new_entry( p );
+ debug( "inserting new\n" );
e->whotoldme = IPA_NONE;
e->network = net->n.prefix;
e->pxlen = net->n.pxlen;
@@ -488,6 +493,14 @@ rip_rte_better(struct rte *new, struct rte *old)
return 0;
}
+static int
+rip_rta_same(rta *a, rta *b)
+{
+ debug( "RIP: they ask me if rta_same\n" );
+ /* As we have no specific data in rta, they are always the same */
+ return 1;
+}
+
static void
rip_preconfig(struct protocol *x)
{
@@ -499,7 +512,7 @@ rip_preconfig(struct protocol *x)
p->if_notify = rip_if_notify;
p->rt_notify = rip_rt_notify;
p->rte_better = rip_rte_better;
- p->rta_same = NULL; /* rip_rta_same; */
+ p->rta_same = rip_rta_same;
p->dump = rip_dump;
}