diff options
author | Andrej Zverev <az@FreeBSD.org> | 2006-02-03 11:39:37 +0000 |
---|---|---|
committer | Andrej Zverev <az@FreeBSD.org> | 2006-02-03 11:39:37 +0000 |
commit | 70b6c15f1a970da5ccb70c2f50046a0192158356 (patch) | |
tree | 7a1153e33cb3f8a86ba82679ce82f2363f84a901 /net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h | |
parent | No KDE release without an xpdf-inherited security issue. (diff) |
- Update to 0.99.3
- Fix build on 4.11 by sem@ (files/patch-lib-buffer.c
files/patch-ospfd-ospfd.h
--------------------------------
Some known problems outstanding:
- bgpd: prefix counts can get a bit screwy after clears/resets
this is mostly cosmetic *unless* you use max-prefix counts.
- bgpd: There is a memory leak if 'set community' is used in
route-maps. This is present in 0.98 too. See bugzilla #89.
- ospfd: 'default-originate always' loses the 'always' qualifier.
Some regressions fixed in 0.99.3:
- bgpd: workqueues were too conservative and could backlog under load
(e.g. continual session up then reset), eventually leading to OOM.
- ospfd: crash on startup (and only startup) if redistribute was
enabled fixed.
- bgpd: SEGV in bgp_aspath.c fixed.
- bgpd: memory leak in bgp_aspath.c fixed
- ospfd: oversize LSA support was not functional, fixed.
- ospfd: leak of connected struct fixed
- ospfd: NSM problems fixed, see bug #234
- vtysh: integrated config file reading should work again.
- zserv: flags above 32bits should make it across to daemons now
(affecting Solaris and IFF_NOXMIT and IFF_VIRTUAL)
- ripd: MD5 auth verification fixed.
The full changelog is available at:
http://www.quagga.net/download/quagga-0.99.3.changelog.txt
PR: ports/92524
Submitted by: Boris Kovalenko <boris@tagnet.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=155127
Diffstat (limited to 'net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h')
-rw-r--r-- | net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h b/net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h index 92ffb01ab343..9cfe64b67ebb 100644 --- a/net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h +++ b/net/quagga/files/extra-tcpmd5-patch-bgpd-bgpd.h @@ -1,22 +1,22 @@ ---- bgpd/bgpd.h.orig Tue Oct 12 22:06:09 2004 -+++ bgpd/bgpd.h Fri Jan 28 21:03:40 2005 -@@ -335,6 +335,9 @@ - #define PEER_FLAG_DYNAMIC_CAPABILITY (1 << 6) /* dynamic capability */ - #define PEER_FLAG_ENFORCE_MULTIHOP (1 << 7) /* enforce-multihop */ - #define PEER_FLAG_LOCAL_AS_NO_PREPEND (1 << 8) /* local-as no-prepend */ -+#ifdef QUAGGA_TCP_MD5SIG /* XXX should move to AF_INET/SFI_UNICAST below */ +--- bgpd/bgpd.h.orig Wed Jan 11 03:10:10 2006 ++++ bgpd/bgpd.h Mon Jan 30 08:52:06 2006 +@@ -347,6 +347,9 @@ + #define PEER_FLAG_DYNAMIC_CAPABILITY (1 << 5) /* dynamic capability */ + #define PEER_FLAG_DISABLE_CONNECTED_CHECK (1 << 6) /* disable-connected-check */ + #define PEER_FLAG_LOCAL_AS_NO_PREPEND (1 << 7) /* local-as no-prepend */ ++#ifdef QUAGGA_TCP_MD5SIG +#define PEER_FLAG_TCP_SIGNATURE (1 << 9) /* use TCP-MD5 digest */ +#endif /* QUAGGA_TCP_MD5SIG */ - /* Per AF configuration flags. */ - u_int32_t af_flags[AFI_MAX][SAFI_MAX]; -@@ -496,6 +499,13 @@ + /* NSF mode (graceful restart) */ + u_char nsf[AFI_MAX][SAFI_MAX]; +@@ -522,6 +525,13 @@ #define PEER_RMAP_TYPE_NOSET (1 << 5) /* not allow to set commands */ #define PEER_RMAP_TYPE_IMPORT (1 << 6) /* neighbor route-map import */ #define PEER_RMAP_TYPE_EXPORT (1 << 7) /* neighbor route-map export */ + +#ifdef QUAGGA_TCP_MD5SIG -+ /* TCP-MD5 Password Support -- bms */ ++ /* TCP-MD5 Password Support -- bms */ +#define PEER_PASSWORD_MINLEN 1 +#define PEER_PASSWORD_MAXLEN 80 /* width of password field */ + char password[PEER_PASSWORD_MAXLEN]; @@ -24,15 +24,15 @@ }; /* This structure's member directly points incoming packet data -@@ -879,6 +889,11 @@ +@@ -904,6 +914,11 @@ - int peer_local_as_set (struct peer *, as_t, int); - int peer_local_as_unset (struct peer *); + extern int peer_local_as_set (struct peer *, as_t, int); + extern int peer_local_as_unset (struct peer *); + +#ifdef QUAGGA_TCP_MD5SIG -+int peer_password_set (struct peer *, char *); -+int peer_password_unset (struct peer *); ++extern int peer_password_set (struct peer *, char *); ++extern int peer_password_unset (struct peer *); +#endif /* QUAGGA_TCP_MD5SIG */ - int peer_prefix_list_set (struct peer *, afi_t, safi_t, int, const char *); - int peer_prefix_list_unset (struct peer *, afi_t, safi_t, int); + extern int peer_prefix_list_set (struct peer *, afi_t, safi_t, int, const char *); + extern int peer_prefix_list_unset (struct peer *, afi_t, safi_t, int); |