mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-21 15:13:10 +01:00
Shorten DBL exclusion chain names
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
f21d8b2a27
commit
8d0dba349c
@ -2446,7 +2446,7 @@ sub output_option_chain($) {
|
||||
#
|
||||
sub nodbl_src_chain($) {
|
||||
my $interface = shift;
|
||||
( $config{USE_PHYSICAL_NAMES} ? chain_base( get_physical( $interface ) ) : get_logical( $interface ) ) . '_nosbl';
|
||||
( $config{USE_PHYSICAL_NAMES} ? chain_base( get_physical( $interface ) ) : get_logical( $interface ) ) . '_nobl';
|
||||
}
|
||||
|
||||
#
|
||||
@ -2454,7 +2454,7 @@ sub nodbl_src_chain($) {
|
||||
#
|
||||
sub nodbl_dst_chain($) {
|
||||
my $interface = shift;
|
||||
( $config{USE_PHYSICAL_NAMES} ? chain_base( get_physical( $interface ) ) : get_logical( $interface ) ) . '_nodbl';
|
||||
( $config{USE_PHYSICAL_NAMES} ? chain_base( get_physical( $interface ) ) : get_logical( $interface ) ) . '_ndbl';
|
||||
}
|
||||
|
||||
#
|
||||
@ -2462,7 +2462,7 @@ sub nodbl_dst_chain($) {
|
||||
#
|
||||
sub nodbl_classic_chain($) {
|
||||
my $interface = shift;
|
||||
( $config{USE_PHYSICAL_NAMES} ? chain_base( get_physical( $interface ) ) : get_logical( $interface ) ) . '_nocbl';
|
||||
( $config{USE_PHYSICAL_NAMES} ? chain_base( get_physical( $interface ) ) : get_logical( $interface ) ) . '_ncbl';
|
||||
}
|
||||
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user