Fixed srcports parsing

This commit is contained in:
Giulio 2021-06-25 11:02:03 +02:00
parent df8ad3e866
commit 3e2fbb2c75

View File

@ -327,18 +327,18 @@ class Rule(qubes.PropertyHolder):
order=1,
doc='destination host/network')
srcports = qubes.property('srcports',
type=SrcPorts,
default=None,
order=2,
doc='Inbound port(s) (for forwarding only)')
dstports = qubes.property('dstports',
type=DstPorts,
default=None,
order=2,
doc='Destination port(s) (for \'tcp\' and \'udp\' protocol only)')
srcports = qubes.property('srcports',
type=DstPorts,
default=None,
order=2,
doc='Inbound port(s) (for forwarding only)')
icmptype = qubes.property('icmptype',
type=IcmpType,
default=None,