diff options
author | tuexen <tuexen@FreeBSD.org> | 2014-08-22 19:57:39 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2014-08-22 19:57:39 +0000 |
commit | a4786844b5aed176a639f1a041df00e694738983 (patch) | |
tree | d2cc67bf7d3042259b0eb0a50770a14d90b095f4 /sys/netinet/sctp_pcb.h | |
parent | c03375e227571ca74ca3e1d283016c01f74d24e2 (diff) | |
download | FreeBSD-src-a4786844b5aed176a639f1a041df00e694738983.zip FreeBSD-src-a4786844b5aed176a639f1a041df00e694738983.tar.gz |
MFC r269436, r269445:
Cleanup the ECN configuration handling and provide an SCTP socket
option for controlling ECN on future associations and get the
status on current associations.
A simialar pattern will be used for controlling SCTP extensions in
upcoming commits.
Diffstat (limited to 'sys/netinet/sctp_pcb.h')
-rw-r--r-- | sys/netinet/sctp_pcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_pcb.h b/sys/netinet/sctp_pcb.h index 8045765..9fa1c1a 100644 --- a/sys/netinet/sctp_pcb.h +++ b/sys/netinet/sctp_pcb.h @@ -406,7 +406,7 @@ struct sctp_inpcb { uint32_t sctp_context; uint8_t local_strreset_support; uint32_t sctp_cmt_on_off; - uint32_t sctp_ecn_enable; + uint8_t ecn_supported; struct sctp_nonpad_sndrcvinfo def_send; /*- * These three are here for the sosend_dgram |