aboutsummaryrefslogtreecommitdiff
path: root/types/protocols.pp
blob: cdd76b2561dacc6e209c7f9d646f2a99e14bb820 (plain)
1
2
3
4
5
# @summary a list of allowed protocolls to match
type Ferm::Protocols = Variant[
  Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all'],
  Array[Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all']],
]