You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by dm...@apache.org on 2023/02/20 17:48:20 UTC

[trafficserver] branch master updated: QUIC-quiche: Use configured disable_active_migration param at quiche transport configuration. (#9447)

This is an automated email from the ASF dual-hosted git repository.

dmeden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new b6d4191aa QUIC-quiche: Use configured disable_active_migration param at quiche transport configuration. (#9447)
b6d4191aa is described below

commit b6d4191aac3d7d84056dccd1dea8622158944b0b
Author: Damian Meden <dm...@apache.org>
AuthorDate: Mon Feb 20 17:48:13 2023 +0000

    QUIC-quiche: Use configured disable_active_migration param at quiche transport configuration. (#9447)
---
 iocore/net/QUICNetProcessor_quiche.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/QUICNetProcessor_quiche.cc b/iocore/net/QUICNetProcessor_quiche.cc
index abe9d59c1..9e71cec2d 100644
--- a/iocore/net/QUICNetProcessor_quiche.cc
+++ b/iocore/net/QUICNetProcessor_quiche.cc
@@ -98,6 +98,7 @@ QUICNetProcessor::start(int, size_t stacksize)
   quiche_config_set_initial_max_stream_data_uni(this->_quiche_config, 1000000);
   quiche_config_set_initial_max_streams_bidi(this->_quiche_config, params->initial_max_streams_bidi_in());
   quiche_config_set_initial_max_streams_uni(this->_quiche_config, params->initial_max_streams_uni_in());
+  quiche_config_set_disable_active_migration(this->_quiche_config, params->disable_active_migration());
   quiche_config_set_cc_algorithm(this->_quiche_config, QUICHE_CC_RENO);
 
 #ifdef TLS1_3_VERSION_DRAFT_TXT