From cb4b88452e04a0102fedff4f01a2246f5e70dea9 Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Mon, 15 May 2006 10:39:30 +0000 Subject: [ospf6d] Import GNU Zebra CVSps#3559: Fix inter-area as-ext bug, cleanup debug 2005-10-06 Yasuhiro Ohara * ospf6_asbr.c: fix bug of calculating AS-External routes in other areas. Add debugging function for border-router calculation. * ospf6d.h: version 0.9.7p --- ospf6d/ospf6d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ospf6d/ospf6d.h') diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index 4b718d7a..2346cc9a 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -22,7 +22,7 @@ #ifndef OSPF6D_H #define OSPF6D_H -#define OSPF6_DAEMON_VERSION "0.9.7o" +#define OSPF6_DAEMON_VERSION "0.9.7p" /* global variables */ extern int errno; -- cgit v1.2.3 From cf1ce250d20003ae94c835e73e95e7442d7a5b53 Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Mon, 15 May 2006 10:46:07 +0000 Subject: [ospf6d] GNU Zebra #3562: ABR Crash fix, memory fixes, route table debugs 2006-02-22 Yasuhiro Ohara * valgrind check and memory fix * route table identification string added * ospf6d.h: version 0.9.7q --- ospf6d/ospf6d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ospf6d/ospf6d.h') diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index 2346cc9a..1dfd96b5 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -22,7 +22,7 @@ #ifndef OSPF6D_H #define OSPF6D_H -#define OSPF6_DAEMON_VERSION "0.9.7p" +#define OSPF6_DAEMON_VERSION "0.9.7q" /* global variables */ extern int errno; -- cgit v1.2.3 From 0b26f81bf9e81be0f65787c48061709427c70d10 Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Mon, 15 May 2006 10:47:53 +0000 Subject: [ospf6d] GNU Zebra 3563: Fix as-external forwarding address 2006-03-01 Yasuhiro Ohara * ospf6_asbr.c: fix bug of needless forwarding address * ospf6d.h: version 0.9.7r --- ospf6d/ospf6d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ospf6d/ospf6d.h') diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index 1dfd96b5..2790fc29 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -22,7 +22,7 @@ #ifndef OSPF6D_H #define OSPF6D_H -#define OSPF6_DAEMON_VERSION "0.9.7q" +#define OSPF6_DAEMON_VERSION "0.9.7r" /* global variables */ extern int errno; -- cgit v1.2.3 From 75a9140be69c464f3b73175209f726bfeabb0c09 Mon Sep 17 00:00:00 2001 From: Greg Troxel Date: Fri, 2 Feb 2007 16:54:23 +0000 Subject: ospf6d.h: remove declaration of errno (should be via header) (from pkgsrc) --- ospf6d/ospf6d.h | 1 - 1 file changed, 1 deletion(-) (limited to 'ospf6d/ospf6d.h') diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index 2790fc29..2d1f725b 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -25,7 +25,6 @@ #define OSPF6_DAEMON_VERSION "0.9.7r" /* global variables */ -extern int errno; extern struct thread_master *master; #ifdef INRIA_IPV6 -- cgit v1.2.3 From 6ac29a51075def99217a4ab1015635db3b3e83ed Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Fri, 15 Aug 2008 13:45:30 +0100 Subject: [trivia] finish off static'ification of ospf6d and ripngd 2008-08-15 Paul Jakma * {ospf6d,ripngd}/*: Finish job of marking functions as static, or exporting declarations for them, to quell warning noise with Quagga's GCC default high-level of warning flags. Thus allowing remaining, more useful warnings to be more easily seen. --- ospf6d/ospf6d.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ospf6d/ospf6d.h') diff --git a/ospf6d/ospf6d.h b/ospf6d/ospf6d.h index 2d1f725b..b6f1b737 100644 --- a/ospf6d/ospf6d.h +++ b/ospf6d/ospf6d.h @@ -112,10 +112,10 @@ extern struct thread_master *master; /* Function Prototypes */ -struct route_node *route_prev (struct route_node *node); +extern struct route_node *route_prev (struct route_node *node); -void ospf6_debug (); -void ospf6_init (); +extern void ospf6_debug (void); +extern void ospf6_init (void); #endif /* OSPF6D_H */ -- cgit v1.2.3