diff options
author | Marco Varlese <marco.varlese@suse.de> | 2018-01-26 16:50:01 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-01-31 03:29:33 +0000 |
commit | 8ad6a2dfed0a7248be9d005dd04c76da142f2238 (patch) | |
tree | e5349b5340d7944c35a6fe3c80db87bb5572f3dd /src/vnet/sctp/sctp_packet.h | |
parent | 8d6ef60b767fc0348b91b3abbf1aff2b84167c2b (diff) |
Prep-work patch for congestion-control
This patch addresses the missing field in various data-structures to
track valuable information to implement the congestion-control
algorithms and manage sub-connections states.
It adds the possibility to queue up to 2 SACKs chunks when the connection
is not gapping.
At the same time, it pushes some variable/field renaming for better
readibility.
Change-Id: Idcc53512983456779600a75e78e21af078e46602
Signed-off-by: Marco Varlese <marco.varlese@suse.de>
Diffstat (limited to 'src/vnet/sctp/sctp_packet.h')
-rw-r--r-- | src/vnet/sctp/sctp_packet.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/vnet/sctp/sctp_packet.h b/src/vnet/sctp/sctp_packet.h index 4c358db6d3b..d1fe7ab71ea 100644 --- a/src/vnet/sctp/sctp_packet.h +++ b/src/vnet/sctp/sctp_packet.h @@ -503,17 +503,6 @@ vnet_sctp_calculate_padding (u16 base_length) return (4 - base_length % 4); } -always_inline u16 -vnet_sctp_calculate_payload_data_padding (sctp_payload_data_chunk_t * p) -{ - u16 payload_length = vnet_sctp_get_chunk_length (&p->chunk_hdr) - - sizeof (p->chunk_hdr) - - sizeof (p->tsn) - - sizeof (p->stream_id) - sizeof (p->stream_seq) - sizeof (p->payload_id); - - return vnet_sctp_calculate_padding (payload_length); -} - #define DEFAULT_A_RWND 1480 #define INBOUND_STREAMS_COUNT 1 #define OUTBOUND_STREAMS_COUNT 1 |