forked from extern/shorewall_code
50494f667c
Signed-off-by: Tom Eastep <teastep@shorewall.net>
29 lines
407 B
Plaintext
29 lines
407 B
Plaintext
#
|
|
# Shorewall version 4 - INLINE Action
|
|
#
|
|
# /usr/share/shorewall/action.INLINE
|
|
#
|
|
#################################################################################
|
|
?FORMAT 2
|
|
|
|
DEFAULTS -
|
|
|
|
?BEGIN PERL;
|
|
use strict;
|
|
use Shorewall::Chains;
|
|
use Shorewall::Rules;
|
|
|
|
my $chainref = get_action_chain;
|
|
my $rule = get_inline_matches;
|
|
|
|
add_rule( $chainref, $rule, '' );
|
|
|
|
allow_optimize( $chainref );
|
|
|
|
?END PERL;
|
|
|
|
|
|
|
|
|
|
|