diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2014-08-12 11:30:16 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2014-08-12 11:30:16 +0000 |
commit | c79bec9c7509f55bcc0a9e30de53a6cb26b94605 (patch) | |
tree | 7ef739646c46ae494ecad5800859e26e929df435 /sys/netinet/sctp_pcb.h | |
parent | 36b16d1f7d1bb7fba28a92aaf802bf4cfbfbb41f (diff) |
Add support for the SCTP_AUTH_SUPPORTED and SCTP_ASCONF_SUPPORTED
socket options. Add also a sysctl to control the support of ASCONF.
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=269858
Diffstat (limited to 'sys/netinet/sctp_pcb.h')
-rw-r--r-- | sys/netinet/sctp_pcb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/netinet/sctp_pcb.h b/sys/netinet/sctp_pcb.h index 694148ad1261..c9183b1d8207 100644 --- a/sys/netinet/sctp_pcb.h +++ b/sys/netinet/sctp_pcb.h @@ -408,6 +408,8 @@ struct sctp_inpcb { uint32_t sctp_cmt_on_off; uint8_t ecn_supported; uint8_t prsctp_supported; + uint8_t auth_supported; + uint8_t asconf_supported; uint8_t reconfig_supported; uint8_t nrsack_supported; uint8_t pktdrop_supported; |