| Index: net/quic/core/crypto/quic_crypto_server_config.cc
|
| diff --git a/net/quic/core/crypto/quic_crypto_server_config.cc b/net/quic/core/crypto/quic_crypto_server_config.cc
|
| index 2c5880eb07018cbeeb63c41012f4ac97cae1959d..e2272475fbb0b83345e607536af1f69d1bac5ed4 100644
|
| --- a/net/quic/core/crypto/quic_crypto_server_config.cc
|
| +++ b/net/quic/core/crypto/quic_crypto_server_config.cc
|
| @@ -868,12 +868,10 @@ void QuicCryptoServerConfig::ProcessClientHelloAfterGetProof(
|
|
|
| size_t key_exchange_index;
|
| if (!QuicUtils::FindMutualTag(requested_config->aead, their_aeads,
|
| - num_their_aeads, QuicUtils::LOCAL_PRIORITY,
|
| - ¶ms->aead, nullptr) ||
|
| + num_their_aeads, ¶ms->aead, nullptr) ||
|
| !QuicUtils::FindMutualTag(requested_config->kexs, their_key_exchanges,
|
| - num_their_key_exchanges,
|
| - QuicUtils::LOCAL_PRIORITY,
|
| - ¶ms->key_exchange, &key_exchange_index)) {
|
| + num_their_key_exchanges, ¶ms->key_exchange,
|
| + &key_exchange_index)) {
|
| helper.Fail(QUIC_CRYPTO_NO_SUPPORT, "Unsupported AEAD or KEXS");
|
| return;
|
| }
|
| @@ -887,8 +885,7 @@ void QuicCryptoServerConfig::ProcessClientHelloAfterGetProof(
|
| case QUIC_NO_ERROR:
|
| if (QuicUtils::FindMutualTag(
|
| requested_config->tb_key_params, their_tbkps, num_their_tbkps,
|
| - QuicUtils::LOCAL_PRIORITY, ¶ms->token_binding_key_param,
|
| - nullptr)) {
|
| + ¶ms->token_binding_key_param, nullptr)) {
|
| break;
|
| }
|
| default:
|
|
|