diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-02-09 01:18:17 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-09 16:57:38 -0500 |
commit | c56480a1e90261842f54f3a5a9ebc12d827f0c3e (patch) | |
tree | 6484401506f92c5502e3ca4895db3fa7cd9e256b /include/linux/sctp.h | |
parent | 119aecbae57e6f10b85b7cd5e070eef006dbcd74 (diff) |
sctp: add support for generating stream reconf ssn/tsn reset request chunk
This patch is to define SSN/TSN Reset Request Parameter described
in rfc6525 section 4.3.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/sctp.h')
-rw-r--r-- | include/linux/sctp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h index d74fca3f3141..71c0d41d9a59 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h @@ -737,4 +737,9 @@ struct sctp_strreset_inreq { __u16 list_of_streams[0]; }; +struct sctp_strreset_tsnreq { + sctp_paramhdr_t param_hdr; + __u32 request_seq; +}; + #endif /* __LINUX_SCTP_H__ */ |