From f3ab4896ed13733a22e9637395973fc1808823e1 Mon Sep 17 00:00:00 2001 From: Marco Varlese Date: Mon, 19 Feb 2018 15:23:13 +0100 Subject: 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 --- src/vnet/sctp/sctp_packet.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/vnet/sctp/sctp_packet.h') 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 -- cgit 1.2.3-korg