mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-18 12:20:42 +01:00
Fix TOS(tos/mask) in tcrules.
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
3e9edcb7e8
commit
8e413a7bf0
@ -463,7 +463,12 @@ sub process_tc_rule( ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
($cmd, $rest) = split( '/', $mark, 2 );
|
if ( $mark =~ /^TOS/ ) {
|
||||||
|
$cmd = $mark;
|
||||||
|
$rest = '';
|
||||||
|
} else {
|
||||||
|
($cmd, $rest) = split( '/', $mark, 2 );
|
||||||
|
}
|
||||||
|
|
||||||
$list = '';
|
$list = '';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user