openc2lib.profiles.slpf.data.drop_process
1from openc2lib import Enumerated 2 3class DropProcess(Enumerated): 4 """ Drop-Process enumeration 5 6 The action to be performed in case the packet is dropped. 7 Defined in Sec. 2.1.3.2 of the SLPF Specification. 8 """ 9 none=1 10 """ Drop the packet and do not send a notification to the source of the packet """ 11 reject=2 12 """ Drop the packet and send an ICMP host unreachable (or equivalent) to the source of the packet """ 13 false_ack=3 14 """ Drop the traffic and send a false acknowledgment """
4class DropProcess(Enumerated): 5 """ Drop-Process enumeration 6 7 The action to be performed in case the packet is dropped. 8 Defined in Sec. 2.1.3.2 of the SLPF Specification. 9 """ 10 none=1 11 """ Drop the packet and do not send a notification to the source of the packet """ 12 reject=2 13 """ Drop the packet and send an ICMP host unreachable (or equivalent) to the source of the packet """ 14 false_ack=3 15 """ Drop the traffic and send a false acknowledgment """
Drop-Process enumeration
The action to be performed in case the packet is dropped. Defined in Sec. 2.1.3.2 of the SLPF Specification.
none =
<DropProcess.none: 1>
Drop the packet and do not send a notification to the source of the packet
reject =
<DropProcess.reject: 2>
Drop the packet and send an ICMP host unreachable (or equivalent) to the source of the packet
Inherited Members
- aenum._enum.Enum
- name
- value
- values