brbzull0 commented on code in PR #9486:
URL: https://github.com/apache/trafficserver/pull/9486#discussion_r1130817610


##########
iocore/net/QUICNetProcessor_quiche.cc:
##########
@@ -90,8 +90,8 @@ QUICNetProcessor::start(int, size_t stacksize)
   }
 
   quiche_config_set_max_idle_timeout(this->_quiche_config, 
params->no_activity_timeout_in());
-  quiche_config_set_max_recv_udp_payload_size(this->_quiche_config, 16384);
-  quiche_config_set_max_send_udp_payload_size(this->_quiche_config, 16384);
+  quiche_config_set_max_recv_udp_payload_size(this->_quiche_config, 
params->get_max_recv_udp_payload_size_in());
+  quiche_config_set_max_send_udp_payload_size(this->_quiche_config, 
params->get_max_send_udp_payload_size_in());

Review Comment:
   It seems to be the default for 
[this](https://www.rfc-editor.org/rfc/rfc9000.html#section-18.2-4.10.1) 
transport parameter.
   > The default for this parameter is the maximum permitted UDP payload of 
65527. Values below 1200 are invalid.well, being hardcoded before means nothing 
different 
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to