forked from extern/shorewall_code
Fix backout of chain change
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6995 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
bb923492a3
commit
523f48d253
@ -450,6 +450,14 @@ sub chain_base($) {
|
||||
$chain;
|
||||
}
|
||||
|
||||
#
|
||||
# Forward Chain for an interface
|
||||
#
|
||||
sub forward_chain($)
|
||||
{
|
||||
chain_base( $_[0] ) . '_fwd';
|
||||
}
|
||||
|
||||
#
|
||||
# Input Chain for an interface
|
||||
#
|
||||
@ -475,11 +483,12 @@ sub masq_chain($)
|
||||
}
|
||||
|
||||
#
|
||||
# Syn_chain
|
||||
# Syn_flood_chain -- differs from the other _chain functions in that the argument is a chain table reference # Syn_chain
|
||||
#
|
||||
sub syn_chain ( $ ) {
|
||||
'@' . $_[0];
|
||||
sub syn_flood_chain ( $ ) {
|
||||
'@' . $_[0]->{synchain};
|
||||
}
|
||||
|
||||
#
|
||||
# MAC Verification Chain for an interface
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user