diff options
| author | Daisy Chang <daisy@teetime.dynamic.austin.ibm.com> | 2002-10-01 09:05:12 -0500 |
|---|---|---|
| committer | Jon Grimm <jgrimm@touki.austin.ibm.com> | 2002-10-01 09:05:12 -0500 |
| commit | a4cae070b155d9738ca207330b579bfec840720a (patch) | |
| tree | 016d16be266880096b34e8879ad5703b116683c9 /include/linux/sctp.h | |
| parent | 22bf2be73655535f19bd282bc12a639672c39558 (diff) | |
sctp: Added the 'Unrecognized Parameter' handling.
Diffstat (limited to 'include/linux/sctp.h')
| -rw-r--r-- | include/linux/sctp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h index 77502f62b660..ba784913fb09 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h @@ -155,7 +155,7 @@ typedef struct sctp_paramhdr { typedef enum { /* RFC 2960 Section 3.3.5 */ - SCTP_PARAM_HEATBEAT_INFO = __constant_htons(1), + SCTP_PARAM_HEARTBEAT_INFO = __constant_htons(1), /* RFC 2960 Section 3.3.2.1 */ SCTP_PARAM_IPV4_ADDRESS = __constant_htons(5), SCTP_PARAM_IPV6_ADDRESS = __constant_htons(6), @@ -190,6 +190,7 @@ typedef enum { SCTP_PARAM_ACTION_SKIP_ERR = __constant_htons(0xc000), } sctp_param_action_t; +enum { SCTP_PARAM_ACTION_MASK = __constant_htons(0xc000), }; /* RFC 2960 Section 3.3.1 Payload Data (DATA) (0) */ |
