aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--types/protocols.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/types/protocols.pp b/types/protocols.pp
index cdd76b2..1c11159 100644
--- a/types/protocols.pp
+++ b/types/protocols.pp
@@ -1,5 +1,7 @@
# @summary a list of allowed protocolls to match
type Ferm::Protocols = Variant[
+ Integer[0, 255],
+ Array[Integer[0, 255]],
Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all'],
Array[Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all']],
]