All of lore.kernel.org
 help / color / mirror / Atom feed
* [NETFILTER 00/17]: Netfilter update for 2.6.18
@ 2006-05-29 22:34 Patrick McHardy
  2006-05-29 22:34 ` [NETFILTER 01/17]: x_tables: remove some unnecessary casts Patrick McHardy
                   ` (17 more replies)
  0 siblings, 18 replies; 23+ messages in thread
From: Patrick McHardy @ 2006-05-29 22:34 UTC (permalink / raw)
  To: davem; +Cc: netfilter-devel, Patrick McHardy

Hi Dave,                                                                           

following is a large netfilter update for 2.6.18 with changes all
over the place, most noteworthy is the replacement of the recent
match, a new SIP connection tracking helper and two new matches.

Please apply to net-2.6.18, thanks.


 include/linux/netfilter/nf_conntrack_common.h                 |    4 
 include/linux/netfilter/nfnetlink_conntrack.h                 |    4 
 include/linux/netfilter/xt_quota.h                            |   16 
 include/linux/netfilter/xt_statistic.h                        |   32 
 include/linux/netfilter_ipv4/ip_conntrack.h                   |    2 
 include/linux/netfilter_ipv4/ip_conntrack_h323.h              |    7 
 include/linux/netfilter_ipv4/ip_conntrack_helper_h323_types.h |    3 
 include/linux/netfilter_ipv4/ip_conntrack_sip.h               |   44 
 include/linux/sysctl.h                                        |    2 
 include/net/netfilter/nf_conntrack.h                          |    1 
 net/ipv4/netfilter/Kconfig                                    |   28 
 net/ipv4/netfilter/Makefile                                   |    2 
 net/ipv4/netfilter/ip_conntrack_amanda.c                      |  143 -
 net/ipv4/netfilter/ip_conntrack_core.c                        |    6 
 net/ipv4/netfilter/ip_conntrack_ftp.c                         |   77 
 net/ipv4/netfilter/ip_conntrack_helper_h323.c                 |  169 +
 net/ipv4/netfilter/ip_conntrack_helper_h323_types.c           |    6 
 net/ipv4/netfilter/ip_conntrack_netlink.c                     |   85 
 net/ipv4/netfilter/ip_conntrack_proto_gre.c                   |    6 
 net/ipv4/netfilter/ip_conntrack_proto_icmp.c                  |    2 
 net/ipv4/netfilter/ip_conntrack_proto_tcp.c                   |    2 
 net/ipv4/netfilter/ip_conntrack_proto_udp.c                   |    2 
 net/ipv4/netfilter/ip_conntrack_sip.c                         |  471 +++
 net/ipv4/netfilter/ip_conntrack_standalone.c                  |   13 
 net/ipv4/netfilter/ip_nat_helper_h323.c                       |   77 
 net/ipv4/netfilter/ip_nat_sip.c                               |  249 +
 net/ipv4/netfilter/ip_nat_snmp_basic.c                        |    2 
 net/ipv4/netfilter/ipt_CLUSTERIP.c                            |   20 
 net/ipv4/netfilter/ipt_hashlimit.c                            |   66 
 net/ipv4/netfilter/ipt_recent.c                               | 1268 ++--------
 net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c                |    2 
 net/ipv4/netfilter/nf_conntrack_proto_icmp.c                  |    2 
 net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c                |    2 
 net/ipv6/netfilter/nf_conntrack_proto_icmpv6.c                |    2 
 net/netfilter/Kconfig                                         |   16 
 net/netfilter/Makefile                                        |    2 
 net/netfilter/nf_conntrack_core.c                             |    6 
 net/netfilter/nf_conntrack_ftp.c                              |   77 
 net/netfilter/nf_conntrack_netlink.c                          |   85 
 net/netfilter/nf_conntrack_proto_tcp.c                        |    5 
 net/netfilter/nf_conntrack_proto_udp.c                        |    3 
 net/netfilter/nf_conntrack_standalone.c                       |   11 
 net/netfilter/xt_connmark.c                                   |    2 
 net/netfilter/xt_dccp.c                                       |    3 
 net/netfilter/xt_mark.c                                       |    2 
 net/netfilter/xt_multiport.c                                  |    7 
 net/netfilter/xt_quota.c                                      |   96 
 net/netfilter/xt_sctp.c                                       |    4 
 net/netfilter/xt_statistic.c                                  |  112 
 net/netfilter/xt_string.c                                     |    2 
 50 files changed, 2036 insertions(+), 1214 deletions(-)

Alexey Dobriyan:
      [NETFILTER]: PPTP helper: fixup gre_keymap_lookup() return type

Eric Leblond:
      [NETFILTER]: conntrack: add fixed timeout flag in connection tracking

Jing Min Zhao:
      [NETFILTER]: H.323 helper: Add support for Call Forwarding

Patrick McHardy:
      [NETFILTER]: x_tables: remove some unnecessary casts
      [NETFILTER]: x_tables: add SCTP/DCCP support where missing
      [NETFILTER]: x_tables: add quota match
      [NETFILTER]: x_tables: add statistic match
      [NETFILTER]: recent match: replace by rewritten version
      [NETFILTER]: conntrack: don't call helpers for related ICMP messages
      [NETFILTER]: conntrack: add sysctl to disable checksumming
      [NETFILTER]: ctnetlink: fix NAT configuration
      [NETFILTER]: ctnetlink: change table dumping not to require an unique ID
      [NETFILTER]: SNMP helper: fix debug module param type
      [NETFILTER]: FTP helper: search optimization
      [NETFILTER]: amanda helper: convert to textsearch infrastructure
      [NETFILTER]: H.323 helper: replace internal_net_addr parameter by routing-based heuristic
      [NETFILTER]: Add SIP connection tracking helper

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

end of thread, other threads:[~2006-05-31  0:48 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-29 22:34 [NETFILTER 00/17]: Netfilter update for 2.6.18 Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 01/17]: x_tables: remove some unnecessary casts Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 02/17]: x_tables: add SCTP/DCCP support where missing Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 03/17]: x_tables: add quota match Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 04/17]: x_tables: add statistic match Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 05/17]: recent match: replace by rewritten version Patrick McHardy
2006-05-30 13:11   ` Stephen Frost
2006-05-30 13:16     ` Patrick McHardy
2006-05-30 18:10       ` Stephen Frost
2006-05-31  0:48         ` Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 06/17]: conntrack: don't call helpers for related ICMP messages Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 07/17]: conntrack: add sysctl to disable checksumming Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 08/17]: conntrack: add fixed timeout flag in connection tracking Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 09/17]: ctnetlink: fix NAT configuration Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 10/17]: ctnetlink: change table dumping not to require an unique ID Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 11/17]: SNMP helper: fix debug module param type Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 12/17]: FTP helper: search optimization Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 13/17]: amanda helper: convert to textsearch infrastructure Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 14/17]: H.323 helper: Add support for Call Forwarding Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 15/17]: H.323 helper: replace internal_net_addr parameter by routing-based heuristic Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 16/17]: Add SIP connection tracking helper Patrick McHardy
2006-05-29 22:34 ` [NETFILTER 17/17]: PPTP helper: fixup gre_keymap_lookup() return type Patrick McHardy
2006-05-30  1:27 ` [NETFILTER 00/17]: Netfilter update for 2.6.18 David Miller

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.