Russell Senior
2013-Mar-05 23:33 UTC
[Bridge] [PATCH] bridge-utils: Fix compile against linux-3.8.x
Linux 3.8 has a header, include/uapi/linux/if_bridge.h that uses a
struct in6_addr but doesn't define it. The trivial seeming fix of
including the header that does define it causes more problems. The
problem was discussed on mailing lists in January 2013. The final
suggestion I found was here:
http://www.redhat.com/archives/libvir-list/2013-January/msg01253.html
This is intended to implement that suggestion.
Signed-off-by: Russell Senior <russell at personaltelco.net>
---
libbridge/libbridge.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/libbridge/libbridge.h b/libbridge/libbridge.h
index 39964f2..dd14bae 100644
--- a/libbridge/libbridge.h
+++ b/libbridge/libbridge.h
@@ -20,6 +20,7 @@
#define _LIBBRIDGE_H
#include <sys/socket.h>
+#include <netinet/in.h>
#include <linux/if.h>
#include <linux/if_bridge.h>
--
1.7.10.4
--
Russell Senior, President
russell at personaltelco.net
Apparently Analagous Threads
- [Bridge] Conflict between net/if.h and linux/if.h
- [Bridge] Building 1.1 ?
- [Bridge] [PATCH] bridge-utils: Add 'hairpin' port forwarding mode
- [Bridge] [PATCH] bridge-utils: Add 'hairpin' port forwarding mode
- [Bridge] [PATCH] bridge-utils: Add 'hairpin' port forwarding mode
