fixed typo of the last commit

This commit is contained in:
Costa Tsaousis (ktsaou) 2015-02-22 07:42:37 +02:00
parent f7f1437d57
commit 6977473de1

@ -3677,7 +3677,7 @@ synproxy() {
set_work_function "SYNPROXY->CLIENT ACK packet at filter.OUTPUT"
test ${FIREHOL_SYNPROXY_LOG} -eq 1 && log=(loglimit "SYNPROXY->CLIENT ACK")
rule table filter chain OUTPUT reverse "${match[@]}" ${overwrite_out[@]} proto tcp state INVALID,UNTRACKED "${log[@]}" action ACCEPT nosoftwarnings outface any physout any || return 1
rule table filter chain OUTPUT reverse "${match[@]}" ${overwrite_in[@]} proto tcp state INVALID,UNTRACKED "${log[@]}" action ACCEPT nosoftwarnings outface any physout any || return 1
# Once the client receives the ACK from SYNPROXY, it will send an ACK back.
# This ACK will be routed again to SYNPROXY (it will be UNTRACKED too).
@ -3686,7 +3686,7 @@ synproxy() {
set_work_function "SYNPROXY->SERVER marking SYN packet at mangle.OUTPUT"
test ${FIREHOL_SYNPROXY_LOG} -eq 1 && log=(loglimit "SYNPROXY->SERVER SYN MARK")
rule table mangle chain OUTPUT "${match[@]}" proto tcp state NEW "${log[@]}" action MARK to ${synproxy_mark} nosoftwarnings inface any physin any || return 1
rule table mangle chain OUTPUT "${match[@]}" proto tcp state NEW "${log[@]}" action MARK to ${synproxy_mark} nosoftwarnings inface any physin any ${overwrite_out[@]} || return 1
case "${action}" in
DNAT)