All of lore.kernel.org
 help / color / mirror / Atom feed
From: Patrick McHardy <kaber@trash.net>
To: Jan Engelhardt <jengelh@computergmbh.de>
Cc: Netfilter Developer Mailing List <netfilter-devel@vger.kernel.org>
Subject: Re: [16/19] libxt_iprange r0
Date: Sun, 20 Jan 2008 14:42:17 +0100	[thread overview]
Message-ID: <47934FB9.20203@trash.net> (raw)
In-Reply-To: <Pine.LNX.4.64.0801161453070.4953@fbirervta.pbzchgretzou.qr>

Jan Engelhardt wrote:
> Move libipt_iprange to libxt_iprange.
> 
> Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
> 
> ---
>  extensions/libipt_iprange.c                |  175 -----------------------------
>  extensions/libipt_iprange.man              |    7 -
>  extensions/libxt_iprange.c                 |  170 ++++++++++++++++++++++++++++
>  extensions/libxt_iprange.man               |    7 +
>  include/linux/netfilter/xt_iprange.h       |   17 ++
>  include/linux/netfilter_ipv4/ipt_iprange.h |    8 -
>  7 files changed, 198 insertions(+), 188 deletions(-)

Applied.

> Index: iptables-modules/include/linux/netfilter_ipv4/ipt_iprange.h
> ===================================================================
> --- iptables-modules.orig/include/linux/netfilter_ipv4/ipt_iprange.h
> +++ iptables-modules/include/linux/netfilter_ipv4/ipt_iprange.h
> @@ -1,14 +1,12 @@
>  #ifndef _IPT_IPRANGE_H
>  #define _IPT_IPRANGE_H
>  
> -#define IPRANGE_SRC		0x01	/* Match source IP address */
> -#define IPRANGE_DST		0x02	/* Match destination IP address */
> -#define IPRANGE_SRC_INV		0x10	/* Negate the condition */
> -#define IPRANGE_DST_INV		0x20	/* Negate the condition */
> +#include <linux/types.h>
> +#include <linux/netfilter/xt_iprange.h>
>  
>  struct ipt_iprange {
>  	/* Inclusive: network order. */
> -	u_int32_t min_ip, max_ip;
> +	__be32 min_ip, max_ip;
>  };
>  
>  struct ipt_iprange_info
> 

Do we really want to keep this file?

  reply	other threads:[~2008-01-20 13:43 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-16 13:46 [0/19] slew of iptables patches Jan Engelhardt
2008-01-16 13:48 ` [01/19] use automake Jan Engelhardt
2008-01-20 13:13   ` Patrick McHardy
2008-01-20 16:51     ` Jan Engelhardt
2008-01-20 16:53       ` Patrick McHardy
2008-01-16 13:48 ` [02/19] strtonum Jan Engelhardt
2008-01-20 13:18   ` Patrick McHardy
2008-01-16 13:49 ` [03/19] common error messages Jan Engelhardt
2008-01-20 13:18   ` Patrick McHardy
2008-01-16 13:49 ` [04/19] libxt_owner Jan Engelhardt
2008-01-20 13:20   ` Patrick McHardy
2008-01-16 13:49 ` [05/19] libxt_tos Jan Engelhardt
2008-01-20 13:21   ` Patrick McHardy
2008-01-16 13:50 ` [06/19] libxt_TOS Jan Engelhardt
2008-01-20 13:24   ` Patrick McHardy
2008-01-16 13:50 ` [07/19] libxt_CONNMARK r1 Jan Engelhardt
2008-01-20 13:27   ` Patrick McHardy
2008-01-16 13:50 ` [08/19] libxt_MARK r2 Jan Engelhardt
2008-01-20 13:30   ` Patrick McHardy
2008-01-16 13:50 ` [09/19] libxt_connmark r1 Jan Engelhardt
2008-01-20 13:31   ` Patrick McHardy
2008-01-16 13:51 ` [10/19] print warning when dlopen fails Jan Engelhardt
2008-01-20 13:32   ` Patrick McHardy
2008-01-16 13:51 ` [11/19] libxt_conntrack r0 Jan Engelhardt
2008-01-20 13:33   ` Patrick McHardy
2008-01-16 13:51 ` [12/19] bunch o' renames Jan Engelhardt
2008-01-20 13:35   ` Patrick McHardy
2008-01-16 13:52 ` [13/19] rename overlapping function names Jan Engelhardt
2008-01-20 13:37   ` Patrick McHardy
2008-01-16 13:52 ` [14/19] libxt_hashlimit checks Jan Engelhardt
2008-01-20 13:38   ` Patrick McHardy
2008-01-16 13:53 ` [15/19] libxt_mark r1 Jan Engelhardt
2008-01-20 13:40   ` Patrick McHardy
2008-01-16 13:53 ` [16/19] libxt_iprange r0 Jan Engelhardt
2008-01-20 13:42   ` Patrick McHardy [this message]
2008-01-20 17:13     ` Jan Engelhardt
2008-01-20 17:19       ` Patrick McHardy
2008-01-20 18:05         ` Jan Engelhardt
2008-01-16 13:54 ` [17/19] libxt_iprange r1 Jan Engelhardt
2008-01-20 13:42   ` Patrick McHardy
2008-01-16 13:54 ` [18/19] libxt_TCPOPTSTRIP Jan Engelhardt
2008-01-17 23:13   ` Sven Schnelle
2008-01-20 13:44     ` Patrick McHardy
2008-01-16 17:57 ` [19/19] xt_conntrack r1 Jan Engelhardt
2008-01-20 13:45   ` Patrick McHardy

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=47934FB9.20203@trash.net \
    --to=kaber@trash.net \
    --cc=jengelh@computergmbh.de \
    --cc=netfilter-devel@vger.kernel.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.