From: Simon Horman <horms@verge.net.au>
To: lvs-devel@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, netfilter@vger.kernel.org,
netfilter-devel@vger.kernel.org
Cc: Malcolm Turnbull <malcolm@loadbalancer.org>,
Wensong Zhang <wensong@linux-vs.org>,
Julius Volz <julius.volz@gmail.com>,
Patrick McHardy <kaber@trash.net>,
"David S. Miller" <davem@davemloft.net>,
Hannes Eder <heder@google.com>
Subject: Re: [patch v2.6 4/4] libxt_ipvs: user-space lib for netfilter matcher xt_ipvs
Date: Wed, 21 Jul 2010 10:21:47 +0900 [thread overview]
Message-ID: <20100721012146.GC22966@verge.net.au> (raw)
In-Reply-To: <20100711090500.421568837@vergenet.net>
On Sun, Jul 11, 2010 at 06:03:46PM +0900, horms@vergenet.net wrote:
> From: Hannes Eder <heder@google.com>
>
> The user-space library for the netfilter matcher xt_ipvs.
[snip]
> Index: iptables/include/linux/netfilter/xt_ipvs.h
> ===================================================================
> --- /dev/null 1970-01-01 00:00:00.000000000 +0000
> +++ iptables/include/linux/netfilter/xt_ipvs.h 2010-07-04 20:23:30.000000000 +0900
> @@ -0,0 +1,25 @@
> +#ifndef _XT_IPVS_H
> +#define _XT_IPVS_H 1
> +
> +#define XT_IPVS_IPVS_PROPERTY (1 << 0) /* all other options imply this one */
> +#define XT_IPVS_PROTO (1 << 1)
> +#define XT_IPVS_VADDR (1 << 2)
> +#define XT_IPVS_VPORT (1 << 3)
> +#define XT_IPVS_DIR (1 << 4)
> +#define XT_IPVS_METHOD (1 << 5)
> +#define XT_IPVS_VPORTCTL (1 << 6)
> +#define XT_IPVS_MASK ((1 << 7) - 1)
> +#define XT_IPVS_ONCE_MASK (XT_IPVS_MASK & ~XT_IPVS_IPVS_PROPERTY)
> +
> +struct xt_ipvs_mtinfo {
> + union nf_inet_addr vaddr, vmask;
> + __be16 vport;
> + __u16 l4proto;
> + __u16 fwd_method;
The kernel version of this file has been updated so that
l4proto and fwd_method are __u8. This also needs to be updated.
I will post an updated patch (v2.7).
> + __be16 vportctl;
> +
> + __u8 invert;
> + __u8 bitmask;
> +};
> +
> +#endif /* _XT_IPVS_H */
next prev parent reply other threads:[~2010-07-21 1:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-11 9:03 [patch v2.6 0/4] IPVS full NAT support + netfilter 'ipvs' match support horms, Simon Horman
2010-07-11 9:03 ` [patch v2.6 1/4] netfilter: xt_ipvs (netfilter matcher for IPVS) horms, Simon Horman
2010-07-11 9:03 ` [patch v2.6 2/4] IPVS: make friends with nf_conntrack horms, Simon Horman
2010-07-11 9:03 ` [patch v2.6 3/4] IPVS: make FTP work with full NAT support horms, Simon Horman
2010-07-11 9:03 ` [patch v2.6 4/4] libxt_ipvs: user-space lib for netfilter matcher xt_ipvs horms, Simon Horman
2010-07-21 1:21 ` Simon Horman [this message]
2010-07-21 1:23 ` [patch v2.7 " Simon Horman
2010-07-21 6:35 ` [patch v2.6 " Jan Engelhardt
2010-07-21 13:21 ` Simon Horman
2010-07-21 13:28 ` Jan Engelhardt
2010-07-21 13:41 ` Simon Horman
2010-07-22 1:38 ` Simon Horman
2010-07-22 6:25 ` Jan Engelhardt
2010-07-22 6:57 ` Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100721012146.GC22966@verge.net.au \
--to=horms@verge.net.au \
--cc=davem@davemloft.net \
--cc=heder@google.com \
--cc=julius.volz@gmail.com \
--cc=kaber@trash.net \
--cc=linux-kernel@vger.kernel.org \
--cc=lvs-devel@vger.kernel.org \
--cc=malcolm@loadbalancer.org \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=netfilter@vger.kernel.org \
--cc=wensong@linux-vs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.