rpms/iptables/devel .cvsignore, 1.28, 1.29 iptables-1.4.5-cloexec.patch, 1.1, 1.2 iptables.spec, 1.80, 1.81 sources, 1.28, 1.29

Thomas Woerner twoerner at fedoraproject.org
Wed Jan 13 15:34:56 UTC 2010


Author: twoerner

Update of /cvs/pkgs/rpms/iptables/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21299

Modified Files:
	.cvsignore iptables-1.4.5-cloexec.patch iptables.spec sources 
Log Message:
- new version 1.4.6 with support for all new features of 2.6.32
  - several man page fixes
  - Support for nommu arches
  - realm: remove static initializations
  - libiptc: remove unused functions
  - libiptc: avoid strict-aliasing warnings
  - iprange: do accept non-ranges for xt_iprange v1
  - iprange: warn on reverse range
  - iprange: roll address parsing into a loop
  - iprange: do accept non-ranges for xt_iprange v1 (log)
  - iprange: warn on reverse range (log)
  - libiptc: fix wrong maptype of base chain counters on restore
  - iptables: fix undersized deletion mask creation
  - style: reduce indent in xtables_check_inverse
  - libxtables: hand argv to xtables_check_inverse
  - iptables/extensions: make bundled options work again
  - CONNMARK: print mark rules with mask 0xffffffff as set instead of xset
  - iptables: take masks into consideration for replace command
  - doc: explain experienced --hitcount limit
  - doc: name resolution clarification
  - iptables: expose option to zero packet/byte counters for a specific rule
  - build: restore --disable-ipv6 functionality on system w/o v6 headers
  - MARK: print mark rules with mask 0xffffffff as --set-mark instead of --set-xmark
  - DNAT: fix incorrect check during parsing
  - extensions: add osf extension
  - conntrack: fix --expires parsing

- dropped nf_ext_init remains from cloexec patch




Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/iptables/devel/.cvsignore,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -p -r1.28 -r1.29
--- .cvsignore	17 Sep 2009 09:13:08 -0000	1.28
+++ .cvsignore	13 Jan 2010 15:34:55 -0000	1.29
@@ -7,3 +7,4 @@ iptables-1.4.3.1.tar.bz2
 iptables-1.4.3.2.tar.bz2
 iptables-1.4.4.tar.bz2
 iptables-1.4.5.tar.bz2
+iptables-1.4.6.tar.bz2

iptables-1.4.5-cloexec.patch:
 extensions/libipt_realm.c |    2 +-
 extensions/libipt_set.h   |    7 +++++++
 ip6tables-restore.c       |    2 +-
 ip6tables-save.c          |    2 +-
 iptables-restore.c        |    2 +-
 iptables-save.c           |    2 +-
 iptables-xml.c            |    2 +-
 libiptc/libiptc.c         |    8 ++++++++
 xtables.c                 |   11 +++++++++++
 9 files changed, 32 insertions(+), 6 deletions(-)

Index: iptables-1.4.5-cloexec.patch
===================================================================
RCS file: /cvs/pkgs/rpms/iptables/devel/iptables-1.4.5-cloexec.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- iptables-1.4.5-cloexec.patch	17 Sep 2009 09:13:09 -0000	1.1
+++ iptables-1.4.5-cloexec.patch	13 Jan 2010 15:34:55 -0000	1.2
@@ -10,15 +10,6 @@ diff -up iptables-1.4.5/extensions/libip
  	if (!fil) {
  		rdberr = 1;
  		return;
-@@ -248,7 +248,7 @@ static struct xtables_match realm_mt_reg
- 	.extra_opts	= realm_opts,
- };
- 
--void _init(void)
-+void __attribute((constructor)) nf_ext_init(void)
- {
- 	xtables_register_match(&realm_mt_reg);
- }
 diff -up iptables-1.4.5/extensions/libipt_set.h.cloexec iptables-1.4.5/extensions/libipt_set.h
 --- iptables-1.4.5/extensions/libipt_set.h.cloexec	2009-09-14 18:36:55.000000000 +0200
 +++ iptables-1.4.5/extensions/libipt_set.h	2009-09-17 11:02:07.000000000 +0200


Index: iptables.spec
===================================================================
RCS file: /cvs/pkgs/rpms/iptables/devel/iptables.spec,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -p -r1.80 -r1.81
--- iptables.spec	17 Sep 2009 09:13:09 -0000	1.80
+++ iptables.spec	13 Jan 2010 15:34:55 -0000	1.81
@@ -1,6 +1,6 @@
 Name: iptables
 Summary: Tools for managing Linux kernel packet filtering capabilities
-Version: 1.4.5
+Version: 1.4.6
 Release: 1%{?dist}
 Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2
 Source1: iptables.init
@@ -152,6 +152,37 @@ fi
 %{_libdir}/pkgconfig/xtables.pc
 
 %changelog
+* Wed Jan 13 2010 Thomas Woerner <twoerner at redhat.com> 1.4.6-1
+- new version 1.4.6 with support for all new features of 2.6.32
+  - several man page fixes
+  - Support for nommu arches
+  - realm: remove static initializations
+  - libiptc: remove unused functions
+  - libiptc: avoid strict-aliasing warnings
+  - iprange: do accept non-ranges for xt_iprange v1
+  - iprange: warn on reverse range
+  - iprange: roll address parsing into a loop
+  - iprange: do accept non-ranges for xt_iprange v1 (log)
+  - iprange: warn on reverse range (log)
+  - libiptc: fix wrong maptype of base chain counters on restore
+  - iptables: fix undersized deletion mask creation
+  - style: reduce indent in xtables_check_inverse
+  - libxtables: hand argv to xtables_check_inverse
+  - iptables/extensions: make bundled options work again
+  - CONNMARK: print mark rules with mask 0xffffffff as set instead of xset
+  - iptables: take masks into consideration for replace command
+  - doc: explain experienced --hitcount limit
+  - doc: name resolution clarification
+  - iptables: expose option to zero packet/byte counters for a specific rule
+  - build: restore --disable-ipv6 functionality on system w/o v6 headers
+  - MARK: print mark rules with mask 0xffffffff as --set-mark instead of --set-xmark
+  - DNAT: fix incorrect check during parsing
+  - extensions: add osf extension
+  - conntrack: fix --expires parsing
+
+* Thu Dec 17 2009 Thomas Woerner <twoerner at redhat.com> 1.4.5-2
+- dropped nf_ext_init remains from cloexec patch
+
 * Thu Sep 17 2009 Thomas Woerner <twoerner at redhat.com> 1.4.5-1
 - new version 1.4.5 with support for all new features of 2.6.31
   - libxt_NFQUEUE: add new v1 version with queue-balance option


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/iptables/devel/sources,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -p -r1.28 -r1.29
--- sources	17 Sep 2009 09:13:09 -0000	1.28
+++ sources	13 Jan 2010 15:34:55 -0000	1.29
@@ -1 +1 @@
-44f13990132c20299c1994cd6f425140  iptables-1.4.5.tar.bz2
+c67cf30e281a924def6426be0973df56  iptables-1.4.6.tar.bz2



More information about the scm-commits mailing list