mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 20:55:13 +02:00

The extension modules use the API of a fairly recent kernel, if not even the networking git tree. To make it work with older Linux kernels, an API wrapper is added. Should compile against running-kernels Linux 2.6.19..current (tested: 2.6.22..current). Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
15 lines
236 B
C
15 lines
236 B
C
#ifndef _COMPAT_NFINETADDR_H
|
|
#define _COMPAT_NFINETADDR_H 1
|
|
|
|
#include <linux/in.h>
|
|
#include <linux/in6.h>
|
|
|
|
union nf_inet_addr {
|
|
__be32 ip;
|
|
__be32 ip6[4];
|
|
struct in_addr in;
|
|
struct in6_addr in6;
|
|
};
|
|
|
|
#endif /* _COMPAT_NFINETADDR_H */
|