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
We realized that a few tests were failing when the values of quic_stop_sending_legacy_version_info and quic_stop_parsing_legacy_version_info were different, so quic_stop_sending_legacy_version_info was blocked in cl/853491571.
This CL fixes the test issue and reverts cl/853491571.
We confirmed that tests pass by running all four combinations via:
```
blaze test //third_party/quic/core/crypto:transport_parameters_test --test_arg=--gfe2_restart_flag_quic_stop_parsing_legacy_version_info=true --test_arg=--gfe2_restart_flag_quic_stop_sending_legacy_version_info=true && blaze test //third_party/quic/core/crypto:transport_parameters_test --test_arg=--gfe2_restart_flag_quic_stop_parsing_legacy_version_info=true --test_arg=--gfe2_restart_flag_quic_stop_sending_legacy_version_info=false && blaze test //third_party/quic/core/crypto:transport_parameters_test --test_arg=--gfe2_restart_flag_quic_stop_parsing_legacy_version_info=false --test_arg=--gfe2_restart_flag_quic_stop_sending_legacy_version_info=true && blaze test //third_party/quic/core/crypto:transport_parameters_test --test_arg=--gfe2_restart_flag_quic_stop_parsing_legacy_version_info=false --test_arg=--gfe2_restart_flag_quic_stop_sending_legacy_version_info=false
```
PiperOrigin-RevId: 855471392
QUICHE_FLAG(bool, quiche_restart_flag_quic_dispatcher_close_connection_on_invalid_ack, false, false, "An invalid ack is an ack that the peer sent for a packet that was not sent by the dispatcher. If true, the dispatcher will close the connection if it receives an invalid ack.")
73
73
QUICHE_FLAG(bool, quiche_restart_flag_quic_shed_tls_handshake_config, false, false, "If true, QUIC connections will call SSL_set_shed_handshake_config to drop BoringSSL handshake state after the handshake finishes in order to save memory.")
74
74
QUICHE_FLAG(bool, quiche_restart_flag_quic_stop_parsing_legacy_version_info, false, false, "If true, disable parsing the legacy version information transport parameter.")
75
-
QUICHE_FLAG(bool, quiche_restart_flag_quic_stop_sending_legacy_version_info, false, false, "If true, disable sending the legacy version information transport parameter.")
75
+
QUICHE_FLAG(bool, quiche_restart_flag_quic_stop_sending_legacy_version_info, false, true, "If true, disable sending the legacy version information transport parameter.")
76
76
QUICHE_FLAG(bool, quiche_restart_flag_quic_support_release_time_for_gso, false, false, "If true, QuicGsoBatchWriter will support release time if it is available and the process has the permission to do so.")
77
77
QUICHE_FLAG(bool, quiche_restart_flag_quic_testonly_default_false, false, false, "A testonly restart flag that will always default to false.")
78
78
QUICHE_FLAG(bool, quiche_restart_flag_quic_testonly_default_true, true, true, "A testonly restart flag that will always default to true.")
0 commit comments