Enum SctpUnrecognisedChunkActions
The actions required for unrecognised chunks. The byte value corresponds to the highest order two bits of the chunk type value.
Namespace: SIPSorcery.Net
Assembly: SIPSorcery.dll
Syntax
public enum SctpUnrecognisedChunkActions : byte
Remarks
Fields
Name | Description |
---|---|
Skip | Skip this chunk and continue processing. |
SkipAndReport | Skip this chunk and continue processing, but report in an ERROR chunk using the 'Unrecognized Chunk Type' cause of error. |
Stop | Stop processing this SCTP packet and discard it, do not process any further chunks within it. |
StopAndReport | Stop processing this SCTP packet and discard it, do not process any further chunks within it, and report the unrecognized chunk in an 'Unrecognized Chunk Type'. |