summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJorge Boncompte [DTI2] <jorge@dti2.net>2012-04-10 16:57:22 +0200
committerDavid Lamparter <equinox@diac24.net>2012-05-02 17:03:27 +0200
commit0c5ed3ed00f630ae95dc2dfd4b5a938683e2a99e (patch)
tree9e478062fed566ce245113a166a6c8d1eec9fbe2 /lib
parent4fe080d7ee4c924a962d14423d94b4b8d8aba110 (diff)
bgpd: Fix memory leak with 'set ip next-hop peer-address'
A route-map with the mentioned statement causes a memory leak for every prefix that matches. Signed-off-by: Jorge Boncompte [DTI2] <jorge@dti2.net> Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/sockunion.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sockunion.h b/lib/sockunion.h
index 4531f620..15b97fc5 100644
--- a/lib/sockunion.h
+++ b/lib/sockunion.h
@@ -86,6 +86,8 @@ enum connect_result
#define sockunion_family(X) (X)->sa.sa_family
+#define sockunion2ip(X) (X)->sin.sin_addr.s_addr
+
/* Prototypes. */
extern int str2sockunion (const char *, union sockunion *);
extern const char *sockunion2str (union sockunion *, char *, size_t);