You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
同一网络下,tquic抢带宽抢不过tcp. 测试环境是一路tquic,一路tcp,
tquic收发双端用的是tquic-example-c这个demo改的,tcp收发双端用的iperf工具。
// quic_config_set_congestion_control_algorithm(config, QUIC_CONGESTION_CONTROL_ALGORITHM_BBR);
quic_config_set_congestion_control_algorithm(config, QUIC_CONGESTION_CONTROL_ALGORITHM_CUBIC);
quic_config_set_max_connection_window(config, 5010241024);
quic_config_set_max_stream_window(config, 25 * 1024 * 1024);
quic_config_set_initial_max_data(config, 5010241024);
quic_config_set_max_stream_window(config, 2510241024);
quic_config_set_initial_max_stream_data_bidi_local(config, 2510241024);
quic_config_set_initial_max_stream_data_bidi_remote(config, 1010241024);
quic_config_set_initial_congestion_window(config, 32);
quic_config_set_min_congestion_window(config, 8);
quic_config_set_pto_linear_factor(config, 3);
quic_config_set_max_pto(config, 3000);
这个是目前的配置,目前验证效果CUBIC比BBR好,但也是抢不赢tcp
Beta Was this translation helpful? Give feedback.
All reactions