diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-07-22 13:52:56 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-07-22 13:52:56 +0000 |
commit | 91eb7b29417c6a5bbe086ceb3e51ea20871593c0 (patch) | |
tree | a4708f8abea39996f09ec35d593ab3ec3fb81b27 | |
parent | 465cf8207c84d9c934f4f9c8462d6cb24bb3a519 (diff) | |
download | upstream-91eb7b29417c6a5bbe086ceb3e51ea20871593c0.tar.gz upstream-91eb7b29417c6a5bbe086ceb3e51ea20871593c0.tar.bz2 upstream-91eb7b29417c6a5bbe086ceb3e51ea20871593c0.zip |
[kernel] fix nf_conntrack_rtsp compile error on 2.6.26 (closes #3797)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11908 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.26/190-netfilter_rtsp.patch | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/190-netfilter_rtsp.patch b/target/linux/generic-2.6/patches-2.6.26/190-netfilter_rtsp.patch index c872189321..0b2965a947 100644 --- a/target/linux/generic-2.6/patches-2.6.26/190-netfilter_rtsp.patch +++ b/target/linux/generic-2.6/patches-2.6.26/190-netfilter_rtsp.patch @@ -347,7 +347,7 @@ depends on IP_NF_IPTABLES && NF_CONNTRACK && NF_NAT --- /dev/null +++ b/net/netfilter/nf_conntrack_rtsp.c -@@ -0,0 +1,513 @@ +@@ -0,0 +1,517 @@ +/* + * RTSP extension for IP connection tracking + * (C) 2003 by Tom Marshall <tmarshall at real.com> @@ -679,7 +679,8 @@ + + be_loport = htons(expinfo.loport); + -+ nf_ct_expect_init(exp, ct->tuplehash[!dir].tuple.src.l3num, ++ nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT, ++ ct->tuplehash[!dir].tuple.src.l3num, + &ct->tuplehash[!dir].tuple.src.u3, &ct->tuplehash[!dir].tuple.dst.u3, + IPPROTO_UDP, NULL, &be_loport); + @@ -784,6 +785,7 @@ + +static struct nf_conntrack_helper rtsp_helpers[MAX_PORTS]; +static char rtsp_names[MAX_PORTS][10]; ++static struct nf_conntrack_expect_policy rtsp_expect_policy; + +/* This function is intentionally _NOT_ defined as __exit */ +static void @@ -815,6 +817,9 @@ + return -EBUSY; + } + ++ rtsp_expect_policy.max_expected = max_outstanding; ++ rtsp_expect_policy.timeout = setup_timeout; ++ + rtsp_buffer = kmalloc(65536, GFP_KERNEL); + if (!rtsp_buffer) + return -ENOMEM; @@ -829,8 +834,7 @@ + memset(hlpr, 0, sizeof(struct nf_conntrack_helper)); + hlpr->tuple.src.u.tcp.port = htons(ports[i]); + hlpr->tuple.dst.protonum = IPPROTO_TCP; -+ hlpr->max_expected = max_outstanding; -+ hlpr->timeout = setup_timeout; ++ hlpr->expect_policy = &rtsp_expect_policy; + hlpr->me = THIS_MODULE; + hlpr->help = help; + |