diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2014-08-03 18:12:55 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2014-08-03 18:12:55 +0000 |
commit | cb9b8e6f7d018872a9db9653ed69d3ed47e27d34 (patch) | |
tree | 88dfe8df411bcdde9f67d745992545bd2736f499 /sys/netinet/sctp_pcb.h | |
parent | 2ea1fcce343f9210983949b7da8938f0261b3ef9 (diff) |
Add support for the SCTP_PKTDROP_SUPPORTED socket option and
the corresponding sysctl variable.
The default is off, since the specification is not an RFC yet.
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=269481
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 deaca24f7959..30e35f843c8b 100644 --- a/sys/netinet/sctp_pcb.h +++ b/sys/netinet/sctp_pcb.h @@ -409,6 +409,7 @@ struct sctp_inpcb { uint8_t ecn_supported; uint8_t prsctp_supported; uint8_t nrsack_supported; + uint8_t pktdrop_supported; struct sctp_nonpad_sndrcvinfo def_send; /*- * These three are here for the sosend_dgram |