mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 15:27:29 +00:00
[SCTP]: Fix typo adaption -> adaptation as per the latest API draft.
Signed-off-by: Ivan Skytte Jorgensen <isj-sctp@i1.dk> Signed-off-by: Sridhar Samudrala <sri@us.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a3f7f142f7
commit
0f3fffd8ab
8 changed files with 79 additions and 79 deletions
|
@ -180,7 +180,7 @@ typedef enum {
|
|||
SCTP_PARAM_ERR_CAUSE = __constant_htons(0xc003),
|
||||
SCTP_PARAM_SET_PRIMARY = __constant_htons(0xc004),
|
||||
SCTP_PARAM_SUCCESS_REPORT = __constant_htons(0xc005),
|
||||
SCTP_PARAM_ADAPTION_LAYER_IND = __constant_htons(0xc006),
|
||||
SCTP_PARAM_ADAPTATION_LAYER_IND = __constant_htons(0xc006),
|
||||
|
||||
} sctp_param_t; /* enum */
|
||||
|
||||
|
@ -281,11 +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 {
|
||||
/* ADDIP Section 3.2.6 Adaptation Layer Indication */
|
||||
typedef struct sctp_adaptation_ind_param {
|
||||
struct sctp_paramhdr param_hdr;
|
||||
__be32 adaption_ind;
|
||||
} __attribute__((packed)) sctp_adaption_ind_param_t;
|
||||
__be32 adaptation_ind;
|
||||
} __attribute__((packed)) sctp_adaptation_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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue