diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2014-08-03 14:10:10 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2014-08-03 14:10:10 +0000 |
commit | caea98793f85e1506a9b02188678ac2cbd541fe8 (patch) | |
tree | db358aa9b1cff59646bf957bd465a9bb73c39941 /sys/netinet/sctp_pcb.h | |
parent | 45dc370059b01670f95fc4885d4f90dba1b0994f (diff) |
Add SCTP socket option SCTP_NRSACK_SUPPORTED to control the
NRSACK extension. The default will still be off, since it
it not an RFC (yet).
Changing the sysctl name will be in a separate commit.
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=269475
Diffstat (limited to 'sys/netinet/sctp_pcb.h')
-rw-r--r-- | sys/netinet/sctp_pcb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netinet/sctp_pcb.h b/sys/netinet/sctp_pcb.h index da0bb92dad07..deaca24f7959 100644 --- a/sys/netinet/sctp_pcb.h +++ b/sys/netinet/sctp_pcb.h @@ -408,6 +408,7 @@ struct sctp_inpcb { uint32_t sctp_cmt_on_off; uint8_t ecn_supported; uint8_t prsctp_supported; + uint8_t nrsack_supported; struct sctp_nonpad_sndrcvinfo def_send; /*- * These three are here for the sosend_dgram |