there is an issue here in the import, the original from meter.features.context import packet_direction would cause error:
AttributeError: module 'meter.features.context.packet_direction' has no attribute 'FORWARD'
the fixed import from meter.features.context.packet_direction import PacketDirection works fine for me.
there is an issue here in the import, the original
from meter.features.context import packet_direction
would cause error: AttributeError: module 'meter.features.context.packet_direction' has no attribute 'FORWARD'the fixed import
from meter.features.context.packet_direction import PacketDirection
works fine for me.