IPV6_ACTION Enumeration

C

typedef enum {
IPV6_ACTION_NONE = 0,
IPV6_ACTION_DISCARD_SILENT,
IPV6_ACTION_DISCARD_PP_0,
IPV6_ACTION_DISCARD_PP_2,
IPV6_ACTION_DISCARD_PP_2_NOT_MC,
IPV6_ACTION_BEGIN_EX_HEADER_PROCESSING
} IPV6_ACTION;

Desscription

Enumeration: IPV6_ACTION.

Different actions need to be taken depending on the result of our header processing.

Members

ParametersDescription
IPV6_ACTION_NONE = 0No action. Skip the option.
IPV6_ACTION_DISCARD_SILENTDiscard the packet silently.
IPV6_ACTION_DISCARD_PP_0Discard the packet and send an ICMP parameter problem message with code value 0.
IPV6_ACTION_DISCARD_PP_2Discard the packet and send an ICMP parameter problem message with code value 2.
IPV6_ACTION_DISCARD_PP_2_NOT_MCDiscard the packet and send an ICMP parameter problem message with code value 3.
IPV6_ACTION_BEGIN_EX_HEADER_PROCESSINGBegin extension processing.

Remarks

None.