mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-12 18:54:25 +01:00
Merge branch '4.5.13'
This commit is contained in:
commit
2a2e23cb17
@ -223,7 +223,7 @@ sub initialize( $ ) {
|
||||
#
|
||||
sub new_rules_chain( $ ) {
|
||||
my $chainref = new_chain( 'filter', $_[0] );
|
||||
$chainref->{sections} = {};
|
||||
$chainref->{sections} = $config{FASTACCEPT} ? { RELATED => 1, ESTABLISHED => 1 } : {};
|
||||
$chainref;
|
||||
}
|
||||
|
||||
@ -902,7 +902,18 @@ sub finish_chain_section ($$$) {
|
||||
last;
|
||||
}
|
||||
|
||||
add_ijump( $chainref, g => $target, state_imatch $_ ) if $target;
|
||||
if ( $target ) {
|
||||
#
|
||||
# Always handle ESTABLISHED first
|
||||
#
|
||||
if ( $state{ESTABLISHED} ) {
|
||||
add_ijump( $chain1ref, j => 'ACCEPT', state_imatch 'ESTABLISHED' );
|
||||
delete $state{ESTABLISHED};
|
||||
}
|
||||
|
||||
add_ijump( $chainref, g => $target, state_imatch $_ );
|
||||
}
|
||||
|
||||
delete $state{$_};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user