diff options
author | Marco Varlese <marco.varlese@suse.com> | 2018-02-19 15:23:13 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-02-20 21:13:03 +0000 |
commit | f3ab4896ed13733a22e9637395973fc1808823e1 (patch) | |
tree | 68fbdf6b914b73e1c9c526060d168a5ad99b4be0 /src/vnet/sctp/sctp_packet.h | |
parent | 6525c7f9022fbed15c519872833097eb8607118b (diff) |
SCTP: congestion control
This patch addresses the requirements depicted by section 7.1.1 and
7.1.2 of the RFC 4960. Specifically, it implements the Slow-start and
Congestion-avoidance policies.
The patch also took care of correctly implementing some 'formatting'
functions required - for instance - in packet(s) tracing.
Change-Id: I68eade1b30345de3acb3ac8a653a5ef76eb6d2ac
Signed-off-by: Marco Varlese <marco.varlese@suse.com>
Diffstat (limited to 'src/vnet/sctp/sctp_packet.h')
-rw-r--r-- | src/vnet/sctp/sctp_packet.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vnet/sctp/sctp_packet.h b/src/vnet/sctp/sctp_packet.h index 9419c16241a..8109efcafc1 100644 --- a/src/vnet/sctp/sctp_packet.h +++ b/src/vnet/sctp/sctp_packet.h @@ -513,7 +513,6 @@ vnet_sctp_calculate_padding (u16 base_length) return (4 - base_length % 4); } -#define DEFAULT_A_RWND 1480 #define INBOUND_STREAMS_COUNT 1 #define OUTBOUND_STREAMS_COUNT 1 |