Modify dropNotSyn to use {proto=6:!syn}

- also make the same change in the rejNotSyn audited case
This commit is contained in:
Tom Eastep 2017-03-07 11:00:39 -08:00
parent e8a0142480
commit e3c2874b21
No known key found for this signature in database
GPG Key ID: 96E6B3F2423A4D10
2 changed files with 3 additions and 3 deletions

View File

@ -29,10 +29,10 @@ DEFAULTS -
?if passed(@1)
?if @1 eq 'audit'
?require AUDIT_TARGET
A_DROP ;; -p 6 ! --syn
A_DROP {proto=6!syn}
?else
?error "Invalid argument (@1) to dropNotSyn"
?endif
?else
DROP ;; -p 6 ! --syn
DROP {proto=6!syn}
?endif

View File

@ -29,7 +29,7 @@ DEFAULTS -
?if passed(@1)
?if @1 eq 'audit'
?require AUDIT_TARGET
A_REJECT ;; -p 6 ! --syn
A_REJECT {proto=6:!syn}
?else
?error "Invalid argument (@1) to rejNotSyn"
?endif