netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* guided option parser, run 2
@ 2011-04-12 14:23 Jan Engelhardt
  2011-04-12 14:23 ` [PATCH 01/28] libxtables: XTTYPE_UINT8 support Jan Engelhardt
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Jan Engelhardt @ 2011-04-12 14:23 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel


The following changes since commit b18ffe3636b07cd817628de81643136e4755a944:

  libxt_cluster: use guided option parser (2011-04-06 13:12:52 +0200)

are available in the git repository at:
  git://dev.medozas.de/iptables opts

Jan Engelhardt (28):
      libxtables: XTTYPE_UINT8 support
      libip[6]t_HL: use guided option parser
      libip[6]t_hl: use guided option parser
      libxtables: XTTYPE_UINT32RC support
      libip[6]t_ah: use guided option parser
      libip6t_frag: use guided option parser
      libxt_esp: use guided option parser
      libxtables: XTTYPE_STRING support
      libip[6]t_REJECT: use guided option parser
      libip6t_dst: use guided option parser
      libip6t_hbh: use guided option parser
      libip[6]t_icmp: use guided option parser
      libip6t_ipv6header: use guided option parser
      libipt_ECN: use guided option parser
      libipt_addrtype: use guided option parser
      libxt_AUDIT: use guided option parser
      libxt_CLASSIFY: use guided option parser
      libxt_DSCP: use guided option parser
      libxt_LED: use guided option parser
      libxt_SECMARK: use guided option parser
      libxt_TCPOPTSTRIP: use guided option parser
      libxt_comment: use guided option parser
      libxt_helper: use guided option parser
      libxt_physdev: use guided option parser
      libxt_pkttype: use guided option parser
      libxt_state: use guided option parser
      libxt_time: use guided option parser
      libxt_u32: use guided option parser

 extensions/libip6t_HL.c         |  111 ++++++++++-----------------
 extensions/libip6t_REJECT.c     |   48 ++++++------
 extensions/libip6t_ah.c         |  112 +++++++---------------------
 extensions/libip6t_dst.c        |   61 +++++----------
 extensions/libip6t_frag.c       |  145 +++++++++--------------------------
 extensions/libip6t_hbh.c        |   61 ++++++----------
 extensions/libip6t_hl.c         |  106 ++++++++++----------------
 extensions/libip6t_icmp6.c      |   53 ++++---------
 extensions/libip6t_ipv6header.c |   88 +++++++---------------
 extensions/libipt_ECN.c         |   95 +++++++++--------------
 extensions/libipt_REJECT.c      |   58 ++++++--------
 extensions/libipt_TTL.c         |  110 ++++++++++-----------------
 extensions/libipt_addrtype.c    |  160 ++++++++++++++-------------------------
 extensions/libipt_ah.c          |   89 ++++------------------
 extensions/libipt_ecn.c         |   82 ++++++++------------
 extensions/libipt_icmp.c        |   47 +++++-------
 extensions/libipt_ttl.c         |  109 ++++++++++-----------------
 extensions/libxt_AUDIT.c        |   66 ++++++-----------
 extensions/libxt_CLASSIFY.c     |   55 ++++----------
 extensions/libxt_DSCP.c         |   87 ++++++---------------
 extensions/libxt_LED.c          |   84 ++++++++------------
 extensions/libxt_SECMARK.c      |   54 ++++----------
 extensions/libxt_TCPOPTSTRIP.c  |   46 +++--------
 extensions/libxt_comment.c      |   61 +++------------
 extensions/libxt_dscp.c         |   94 +++++++----------------
 extensions/libxt_esp.c          |   95 ++++-------------------
 extensions/libxt_helper.c       |   54 ++++---------
 extensions/libxt_physdev.c      |  113 ++++++++++-----------------
 extensions/libxt_pkttype.c      |   52 ++++---------
 extensions/libxt_state.c        |   50 ++++--------
 extensions/libxt_time.c         |  153 +++++++++++++------------------------
 extensions/libxt_u32.c          |   39 ++++------
 include/xtables.h.in            |   10 ++-
 xtoptions.c                     |   90 +++++++++++++++++++++-
 34 files changed, 955 insertions(+), 1783 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2011-04-13 11:41 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-12 14:23 guided option parser, run 2 Jan Engelhardt
2011-04-12 14:23 ` [PATCH 01/28] libxtables: XTTYPE_UINT8 support Jan Engelhardt
2011-04-12 14:23 ` [PATCH 02/28] libip[6]t_HL: use guided option parser Jan Engelhardt
2011-04-12 14:23 ` [PATCH 03/28] libip[6]t_hl: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 04/28] libxtables: XTTYPE_UINT32RC support Jan Engelhardt
2011-04-12 14:23 ` [PATCH 05/28] libip[6]t_ah: use guided option parser Jan Engelhardt
2011-04-12 14:23 ` [PATCH 06/28] libip6t_frag: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 07/28] libxt_esp: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 08/28] libxtables: XTTYPE_STRING support Jan Engelhardt
2011-04-12 14:23 ` [PATCH 09/28] libip[6]t_REJECT: use guided option parser Jan Engelhardt
2011-04-12 14:23 ` [PATCH 10/28] libip6t_dst: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 11/28] libip6t_hbh: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 12/28] libip[6]t_icmp: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 13/28] libip6t_ipv6header: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 14/28] libipt_ECN: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 15/28] libipt_addrtype: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 16/28] libxt_AUDIT: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 17/28] libxt_CLASSIFY: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 18/28] libxt_DSCP: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 19/28] libxt_LED: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 20/28] libxt_SECMARK: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 21/28] libxt_TCPOPTSTRIP: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 22/28] libxt_comment: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 23/28] libxt_helper: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 24/28] libxt_physdev: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 25/28] libxt_pkttype: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 26/28] libxt_state: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 27/28] libxt_time: " Jan Engelhardt
2011-04-12 14:23 ` [PATCH 28/28] libxt_u32: " Jan Engelhardt
2011-04-13 11:41 ` guided option parser, run 2 Patrick McHardy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).