From 39c61f385197da8fb91aa52fa4b27cfeca2d242a Mon Sep 17 00:00:00 2001 From: rrs Date: Tue, 1 Mar 2011 00:37:46 +0000 Subject: Adds a new Congestion Control that helps reduce the RTT that a flow will build up in buffers in transit. It is a slight modification to RFC2581 but is more friendly i.e. less aggressive. MFC after: 3 months --- sys/netinet/sctp.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/netinet/sctp.h') diff --git a/sys/netinet/sctp.h b/sys/netinet/sctp.h index fcfb173..403bea4 100644 --- a/sys/netinet/sctp.h +++ b/sys/netinet/sctp.h @@ -258,6 +258,11 @@ struct sctp_paramhdr { #define SCTP_CC_HSTCP 0x00000001 /* HTCP Congestion Control */ #define SCTP_CC_HTCP 0x00000002 +/* RTCC Congestion Control - RFC2581 plus */ +#define SCTP_CC_RTCC 0x00000003 + +#define SCTP_CC_OPT_RTCC_SETMODE 0x00002000 +#define SCTP_CC_OPT_USE_DCCC_ECN 0x00002001 /* RS - Supported stream scheduling modules for pluggable * stream scheduling -- cgit v1.1