iptables branch, master, updated. v1.4.10-124-gcd50f26

Patrick McHardy netfilter-cvslog-bounces at lists.netfilter.org
Tue Apr 12 16:10:36 CEST 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "iptables".

The branch, master has been updated
       via  cd50f26ad6016ae57af1f822f8aa3ceb2ef9727a (commit)
       via  b18ffe3636b07cd817628de81643136e4755a944 (commit)
       via  d78254d7f9d18ef76377a3013302430cce8ea702 (commit)
       via  93112921153c43dc0521be499f6a792d2aaae5e9 (commit)
       via  a93142d5f55db74ebd7d49be9bd88f7a499ded40 (commit)
       via  97265fb806dffc6fd87ee5e0f0963dfbe7a094f6 (commit)
       via  3af739b0e7c3b6dcc986645c57c982d0add5006b (commit)
       via  9c5c10554c61f0b22cbc65b27b765fa8172040f7 (commit)
       via  f92bca9da4ee68f05dbb827a8444804a8edb1b87 (commit)
       via  aa37acc1423126f555135935c687eb91995b9440 (commit)
       via  458d84de2412b43604a8efe2b82a2084a2859a46 (commit)
      from  884d2675f1a880ffcc072da69ab8c9aaea2a3bce (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cd50f26ad6016ae57af1f822f8aa3ceb2ef9727a
Merge: 884d2675f1a880ffcc072da69ab8c9aaea2a3bce b18ffe3636b07cd817628de81643136e4755a944
Author: Patrick McHardy <kaber at trash.net>
Date:   Tue Apr 12 16:05:39 2011 +0200

    Merge branch 'opts' of git://dev.medozas.de/iptables

commit b18ffe3636b07cd817628de81643136e4755a944
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Sun Feb 27 17:52:23 2011 +0100

    libxt_cluster: use guided option parser
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit d78254d7f9d18ef76377a3013302430cce8ea702
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Sun Feb 27 17:38:34 2011 +0100

    libxtables: min-max option support
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit 93112921153c43dc0521be499f6a792d2aaae5e9
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Fri Feb 18 03:41:18 2011 +0100

    libxt_cpu: use guided option parser
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit a93142d5f55db74ebd7d49be9bd88f7a499ded40
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Wed Feb 16 01:22:25 2011 +0100

    libxtables: XTTYPE_UINT32 support
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit 97265fb806dffc6fd87ee5e0f0963dfbe7a094f6
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Sun Feb 27 16:50:22 2011 +0100

    libxt_CONNSECMARK: use guided option parser
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit 3af739b0e7c3b6dcc986645c57c982d0add5006b
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Thu Feb 10 16:57:37 2011 +0100

    libxtables: provide better final_check
    
    This passes the per-extension data block to the new x6_fcheck function
    pointer, which can then do last alterations without using hacks
    like global variables (think libxt_statistic).
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit 9c5c10554c61f0b22cbc65b27b765fa8172040f7
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Fri Feb 18 03:22:52 2011 +0100

    libxt_socket: use guided option parser
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit f92bca9da4ee68f05dbb827a8444804a8edb1b87
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Sun Feb 27 16:54:27 2011 +0100

    libxt_CHECKSUM: use guided option parser
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit aa37acc1423126f555135935c687eb91995b9440
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Mon Feb 7 04:00:50 2011 +0100

    libxtables: guided option parser
    
    This patchset seeks to drastically reduce the code in the individual
    extensions by centralizing their argument parsing (breakdown of
    strings), validation, and in part, assignment.
    
    As a secondary goal, this reduces the number of static storage duration
    variables in flight.
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

commit 458d84de2412b43604a8efe2b82a2084a2859a46
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Tue Mar 1 19:48:10 2011 +0100

    extensions: add missing checks for specific flags (2)
    
    Addendum to v1.4.10-75-g4e5d4bf. It does not make sense to use
    ipv6header's --soft without specifying any options.
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am                     |    2 +-
 extensions/libip6t_ipv6header.c |    4 +-
 extensions/libxt_CHECKSUM.c     |   46 ++----
 extensions/libxt_CONNSECMARK.c  |   59 +++----
 extensions/libxt_cluster.c      |  187 +++++---------------
 extensions/libxt_cpu.c          |   65 ++-----
 extensions/libxt_socket.c       |   29 ++--
 include/xtables.h.in            |  111 ++++++++++++
 ip6tables.c                     |   56 ++++--
 iptables.c                      |   58 ++++---
 xshared.h                       |   20 ++
 xtables.c                       |   25 +--
 xtoptions.c                     |  366 +++++++++++++++++++++++++++++++++++++++
 13 files changed, 695 insertions(+), 333 deletions(-)
 create mode 100644 xtoptions.c


hooks/post-receive
-- 
iptables



More information about the netfilter-cvslog mailing list