2007-06-04 11:25:53 +00:00
|
|
|
Index: ipsec-tools-0.6.6/src/racoon/grabmyaddr.c
|
|
|
|
===================================================================
|
|
|
|
--- ipsec-tools-0.6.6.orig/src/racoon/grabmyaddr.c 2007-06-04 13:22:36.521303200 +0200
|
|
|
|
+++ ipsec-tools-0.6.6/src/racoon/grabmyaddr.c 2007-06-04 13:22:37.064220664 +0200
|
2006-12-15 16:15:35 +00:00
|
|
|
@@ -77,10 +77,17 @@
|
|
|
|
#ifdef __linux__
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
+#include <linux/version.h>
|
|
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
|
|
|
|
+# include <linux/if_addr.h>
|
|
|
|
+#endif
|
|
|
|
#ifndef HAVE_GETIFADDRS
|
|
|
|
#define HAVE_GETIFADDRS
|
|
|
|
#define NEED_LINUX_GETIFADDRS
|
|
|
|
#endif
|
|
|
|
+#ifndef IFA_RTA
|
|
|
|
+# define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
|
|
|
|
+#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_GETIFADDRS
|