From 35a60c2d3c217e3b835821a7f6ea458e2eff44cf Mon Sep 17 00:00:00 2001 From: ajs Date: Sun, 30 Oct 2005 23:51:32 +0000 Subject: 2005-10-30 Andrew J. Schorr * ripd.c: (rip_response_process) Instead of calling rip_interface.c:if_valid_neighbor(), call the equivalent library function if_lookup_address(). * rip_interface.c: (if_valid_neighbor) Remove function, since it is essentially equivalent to the if_lookup_address() library function. * ripd.h: (if_valid_neighbor) Remove function declaration. --- ripd/ripd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ripd/ripd.c') diff --git a/ripd/ripd.c b/ripd/ripd.c index 2e2b2849..ec7bd199 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -1131,8 +1131,8 @@ rip_response_process (struct rip_packet *packet, int size, /* The datagram's IPv4 source address should be checked to see whether the datagram is from a valid neighbor; the source of the - datagram must be on a directly connected network */ - if (! if_valid_neighbor (from->sin_addr)) + datagram must be on a directly connected network (RFC2453 - Sec. 3.9.2) */ + if (if_lookup_address(from->sin_addr) == NULL) { zlog_info ("This datagram doesn't came from a valid neighbor: %s", inet_ntoa (from->sin_addr)); -- cgit v1.2.1