From c7fe4f39bca709a9ca094ffd4465490fa780a576 Mon Sep 17 00:00:00 2001 From: Marco Varlese Date: Mon, 5 Mar 2018 15:12:29 +0100 Subject: SCTP: API to configure some tunables This patch adds the possibility to configure some behaviors of the SCTP stack based on some tunable parameters (mainly ON/OFF). For the time being, that is limited to the bundling option (multiplexing messages) and to delaying the SACK message. Change-Id: I696493e0309e47163c1e119c7d9f82f7d8ee6b87 Signed-off-by: Marco Varlese --- src/vnet/sctp/sctp.api | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/vnet/sctp/sctp.api') diff --git a/src/vnet/sctp/sctp.api b/src/vnet/sctp/sctp.api index 6253c954d1c..fb228617216 100644 --- a/src/vnet/sctp/sctp.api +++ b/src/vnet/sctp/sctp.api @@ -41,4 +41,11 @@ autoreply define sctp_del_src_dst_connection { u32 vrf_id; u8 src_address[16]; u8 dst_address[16]; + }; + +autoreply define sctp_config { + u32 client_index; + u32 context; + u8 never_delay_sack; + u8 never_bundle; }; \ No newline at end of file -- cgit 1.2.3-korg