| --- /home/dhudson/mips-orig/nf_conntrack_proto_tcp.c 2013-05-07 21:32:57.153896922 +0100 |
| +++ nf_conntrack_proto_tcp.c 2013-06-13 16:37:40.137102438 +0100 |
| @@ -27,18 +27,20 @@ |
| #include <net/netfilter/nf_conntrack_ecache.h> |
| #include <net/netfilter/nf_log.h> |
| #include <net/netfilter/ipv4/nf_conntrack_ipv4.h> |
| #include <net/netfilter/ipv6/nf_conntrack_ipv6.h> |
| |
| /* Do not check the TCP window for incoming packets */ |
| -static int nf_ct_tcp_no_window_check __read_mostly = 1; |
| +int nf_ct_tcp_no_window_check __read_mostly = 0; |
| +EXPORT_SYMBOL_GPL(nf_ct_tcp_no_window_check); |
| |
| /* "Be conservative in what you do, |
| be liberal in what you accept from others." |
| If it's non-zero, we mark only out of window RST segments as INVALID. */ |
| -static int nf_ct_tcp_be_liberal __read_mostly = 0; |
| +int nf_ct_tcp_be_liberal __read_mostly = 0; |
| +EXPORT_SYMBOL_GPL(nf_ct_tcp_be_liberal); |
| |
| /* If it is set to zero, we disable picking up already established |
| connections. */ |
| static int nf_ct_tcp_loose __read_mostly = 1; |
| |
| /* Max number of the retransmitted packets without receiving an (acceptable) |