diff options
author | Chris Hall <GMCH@hestia.halldom.com> | 2010-04-17 16:50:23 +0100 |
---|---|---|
committer | Chris Hall <GMCH@hestia.halldom.com> | 2010-04-17 16:50:23 +0100 |
commit | 31d9b6c31d949bf0e884d8a6e02939345b9816e1 (patch) | |
tree | 7a6588c12a16f99b512232b77e86118837c646c4 /zebra/interface.h | |
parent | 825f338d44433fc2d351c08d41272f52a15329db (diff) | |
download | quagga-31d9b6c31d949bf0e884d8a6e02939345b9816e1.tar.bz2 quagga-31d9b6c31d949bf0e884d8a6e02939345b9816e1.tar.xz |
Bring up to date with 0.99.16 release
This brings this branch up to date with 0.99.16, EXCEPT for the
change to bgpd to use monotonic clock for timing updates.
There are places where bgpd expects to find the actual time that
things happened... so this change is not though to be complete.
Further tidying in zebra, for FreeBSD.
Diffstat (limited to 'zebra/interface.h')
-rw-r--r-- | zebra/interface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zebra/interface.h b/zebra/interface.h index e07388cb..147521c6 100644 --- a/zebra/interface.h +++ b/zebra/interface.h @@ -225,16 +225,16 @@ extern int if_subnet_add (struct interface *, struct connected *); extern int if_subnet_delete (struct interface *, struct connected *); #ifdef HAVE_PROC_NET_DEV -extern void ifstat_update_proc (void); /* see if_proc.c */ -extern int interface_list_proc (void); /* see if_proc.c */ +extern void ifstat_update_proc (void); /* see if_proc.c */ +extern int interface_list_proc (void); /* see if_proc.c */ #endif /* HAVE_PROC_NET_DEV */ #if defined(HAVE_IPV6) && defined(HAVE_PROC_NET_IF_INET6) -extern int ifaddr_proc_ipv6 (void); /* see if_proc.c */ +extern int ifaddr_proc_ipv6 (void); /* see if_proc.c */ #endif /* HAVE_PROC_NET_IF_INET6 */ #ifdef HAVE_NET_RT_IFLIST -extern void ifstat_update_sysctl (void); +extern void ifstat_update_sysctl (void); /* see if_sysctl.c */ #endif /* HAVE_NET_RT_IFLIST */ #ifdef BSDI |