From 53a50af50427e2fedc4bbfeca7a5934a798a3827 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 10 Mar 2002 12:32:12 +0000 Subject: [PATCH] Applied Pavel's fix for broadcast/multicast mode. --- proto/rip/rip.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/proto/rip/rip.c b/proto/rip/rip.c index d98f55e5..68f9f1c3 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -770,20 +770,19 @@ rip_if_notify(struct proto *p, unsigned c, struct iface *iface) if (c & IF_CHANGE_UP) { struct iface_patt *k = iface_patt_match(&P_CF->iface_list, iface); struct object_lock *lock; + struct rip_patt *PATT = (struct rip_patt *) k; if (!k) return; /* We are not interested in this interface */ lock = olock_new( p->pool ); + if (!(PATT->mode & IM_BROADCAST) && (iface->flags & IF_MULTICAST)) #ifndef IPV6 - lock->addr = ipa_from_u32(0xe0000009); /* This is okay: we - may actually use - other address, but - we do not want two - rips at one time, - anyway. */ + lock->addr = ipa_from_u32(0xe0000009); #else - ip_pton("FF02::9", &lock->addr); + ip_pton("FF02::9", &lock->addr); #endif + else + lock->addr = iface->addr->brd; lock->port = P_CF->port; lock->iface = iface; lock->hook = rip_real_if_add;