From 0de1cde6e602e7496628967aeb219cd28d4869a9 Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 19 Aug 2004 04:45:33 +0000 Subject: 2004-08-19 Paul Jakma * irdp_main.c: update to match sockopt renames. * irdp_packet.c: include sockopt.h and update to match sockopt renames. --- zebra/ChangeLog | 6 ++++++ zebra/irdp_main.c | 2 +- zebra/irdp_packet.c | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) (limited to 'zebra') diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 5adcbcee..0b54f29a 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,9 @@ +2004-08-19 Paul Jakma + + * irdp_main.c: update to match sockopt renames. + * irdp_packet.c: include sockopt.h and update to match sockopt + renames. + 2004-08-11 Greg Troxel * rtadv.c (rtadv_send_packet): Allocate space for control messages diff --git a/zebra/irdp_main.c b/zebra/irdp_main.c index fd56c881..f711d852 100644 --- a/zebra/irdp_main.c +++ b/zebra/irdp_main.c @@ -124,7 +124,7 @@ irdp_sock_init (void) return ret; }; - ret = setsockopt_pktinfo_ipv4 (irdp_sock, 1); + ret = setsockopt_pktinfo (AF_INET, irdp_sock, 1); if (ret < 0) { zlog_warn ("IRDP: can't do irdp sockopt %s", strerror(errno)); return ret; diff --git a/zebra/irdp_packet.c b/zebra/irdp_packet.c index e881ef93..8cd3dad6 100644 --- a/zebra/irdp_packet.c +++ b/zebra/irdp_packet.c @@ -61,7 +61,7 @@ #include "if.h" #include "sockunion.h" #include "log.h" - +#include "sockopt.h" /* GLOBAL VARS */ @@ -214,7 +214,7 @@ int irdp_recvmsg (int sock, return ret; } - ifindex = getsockopt_pktinfo_ifindex (AF_INET, &msg); + ifindex = getsockopt_ifindex (AF_INET, &msg); return ret; } -- cgit v1.2.1