|
@@ -285,11 +285,15 @@ synproxy_tg4(struct sk_buff *skb, const struct xt_action_param *par)
|
|
|
XT_SYNPROXY_OPT_ECN);
|
|
XT_SYNPROXY_OPT_ECN);
|
|
|
|
|
|
|
|
synproxy_send_client_synack(skb, th, &opts);
|
|
synproxy_send_client_synack(skb, th, &opts);
|
|
|
- } else if (th->ack && !(th->fin || th->rst || th->syn))
|
|
|
|
|
|
|
+ return NF_DROP;
|
|
|
|
|
+
|
|
|
|
|
+ } else if (th->ack && !(th->fin || th->rst || th->syn)) {
|
|
|
/* ACK from client */
|
|
/* ACK from client */
|
|
|
synproxy_recv_client_ack(snet, skb, th, &opts, ntohl(th->seq));
|
|
synproxy_recv_client_ack(snet, skb, th, &opts, ntohl(th->seq));
|
|
|
|
|
+ return NF_DROP;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- return NF_DROP;
|
|
|
|
|
|
|
+ return XT_CONTINUE;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
static unsigned int ipv4_synproxy_hook(unsigned int hooknum,
|
|
static unsigned int ipv4_synproxy_hook(unsigned int hooknum,
|