diff --git a/CMakeLists.txt b/CMakeLists.txt index 13aae30..81ed5ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.7) project(libdatachannel - VERSION 0.11.7 + VERSION 0.11.8 LANGUAGES CXX) set(PROJECT_DESCRIPTION "WebRTC Data Channels Library") diff --git a/src/impl/sctptransport.cpp b/src/impl/sctptransport.cpp index f2ec258..0310b7c 100644 --- a/src/impl/sctptransport.cpp +++ b/src/impl/sctptransport.cpp @@ -82,10 +82,9 @@ void SctpTransport::Init() { usrsctp_sysctl_set_sctp_max_chunks_on_queue(10 * 1024); - // Use default congestion control same as WebRTC - // SCTP_CC_HTCP mode is problematic + // Use default congestion control (RFC 4960) // See https://github.com/paullouisageneau/libdatachannel/issues/354 - // usrsctp_sysctl_set_sctp_default_cc_module(SCTP_CC_HTCP); + usrsctp_sysctl_set_sctp_default_cc_module(0); // Enable Partial Reliability Extension (RFC 3758) usrsctp_sysctl_set_sctp_pr_enable(1);