Skip to content
Snippets Groups Projects
Commit ce2aa210 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Add structure for SUPPORTED_EXTENSIONS parameter.

parent eaf9ad24
No related branches found
No related tags found
No related merge requests found
......@@ -242,6 +242,7 @@ struct sctp_pad_chunk {
#define SCTP_HOSTNAME_ADDRESS_PARAMETER_TYPE 0x000b
#define SCTP_SUPPORTED_ADDRESS_TYPES_PARAMETER_TYPE 0x000c
#define SCTP_ECN_CAPABLE_PARAMETER_TYPE 0x8000
#define SCTP_SUPPORTED_EXTENSIONS_PARAMETER_TYPE 0x8008
#define SCTP_PAD_PARAMETER_TYPE 0x8005
#define MAX_SCTP_PARAMETER_BYTES 0xffff
......@@ -305,6 +306,12 @@ struct sctp_ecn_capable_parameter {
__be16 length;
} __packed;
struct sctp_supported_extensions_parameter {
__be16 type;
__be16 length;
__u8 chunk_type[];
} __packed;
struct sctp_pad_parameter {
__be16 type;
__be16 length;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment