diff options
| author | Sridhar Samudrala <sri@us.ibm.com> | 2004-10-21 01:21:31 -0700 |
|---|---|---|
| committer | Sridhar Samudrala <sri@us.ibm.com> | 2004-10-21 01:21:31 -0700 |
| commit | ac49b054e7f7d4d3141f5975b72b386ae04c5c46 (patch) | |
| tree | bf6a71aaa65dccff15cd44fdd2b372f5f49f0046 /include/linux | |
| parent | 9ae3df72f454e753b22489f9a6742340844b40c7 (diff) | |
[SCTP] Adaption layer indication support.
Add support for SCTP_ADAPTION_INDICATION notification, SCTP_ADAPTION_LAYER
socket option and SCTP_PARAM_ADAPTION_LAYER_IND parameter.
Signed-off-by: Sridhar Samudrala <sri@us.ibm.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sctp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h index cff28345eacf..1ed3da0cb9d0 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h @@ -281,7 +281,11 @@ typedef struct sctp_ecn_capable_param { sctp_paramhdr_t param_hdr; } __attribute__((packed)) sctp_ecn_capable_param_t; - +/* ADDIP Section 3.2.6 Adaption Layer Indication */ +typedef struct sctp_adaption_ind_param { + struct sctp_paramhdr param_hdr; + __u32 adaption_ind; +} __attribute__((packed)) sctp_adaption_ind_param_t; /* RFC 2960. Section 3.3.3 Initiation Acknowledgement (INIT ACK) (2): * The INIT ACK chunk is used to acknowledge the initiation of an SCTP |
