blob: 49bfd2ca004f52cf9f9764cd67b56b714f27976e (
plain)
1
2
3
4
5
6
|
# @summary a list of allowed actions for a rule
# As you can also *jump* to other chains, each chain-name is also a valid action/target
type Ferm::Actions = Variant[
Enum['RETURN', 'ACCEPT', 'DROP', 'REJECT', 'NOTRACK', 'LOG', 'MARK', 'DNAT', 'SNAT', 'MASQUERADE', 'REDIRECT'],
String[1],
]
|