Merge branch '4.4.27' of ssh://shorewall.git.sourceforge.net/gitroot/shorewall/shorewall into 4.4.27

Conflicts:
	Shorewall/Perl/Shorewall/Chains.pm
	Shorewall/Perl/Shorewall/Raw.pm
This commit is contained in:
Tom Eastep 2011-12-27 12:32:13 -08:00
parent 1c2ab238a5
commit 7721644209

View File

@ -488,7 +488,7 @@ sub process_tc_rule( ) {
do_length( $length ) . do_length( $length ) .
do_tos( $tos ) . do_tos( $tos ) .
do_connbytes( $connbytes ) . do_connbytes( $connbytes ) .
do_helper( $helper, $proto ) . do_helper( $helper ) .
do_headers( $headers ) , do_headers( $headers ) ,
$source , $source ,
$dest , $dest ,
@ -1456,7 +1456,7 @@ sub process_tc_priority() {
unless ( $helper eq '-' ) { unless ( $helper eq '-' ) {
fatal_error( "A PROTO is required when a HELPER is specified" ) if $proto eq '-'; fatal_error( "A PROTO is required when a HELPER is specified" ) if $proto eq '-';
fatal_error( "Unknown protocol" ) unless defined resolve_protocol( $proto ); fatal_error( "Unknown protocol" ) unless defined resolve_protocol( $proto );
$rule = do_helper( $helper, $proto ) . "-j MARK --set-mark $band"; $rule = do_helper( $helper ) . "-j MARK --set-mark $band";
} else { } else {
$rule = ''; $rule = '';
} }