| Index: net/quic/quic_chromium_client_session.cc
|
| diff --git a/net/quic/quic_chromium_client_session.cc b/net/quic/quic_chromium_client_session.cc
|
| index a10373a34071deac27865d68de00db8edddad790..6895fcdaac785275dfda7307df664313666ee27a 100644
|
| --- a/net/quic/quic_chromium_client_session.cc
|
| +++ b/net/quic/quic_chromium_client_session.cc
|
| @@ -737,6 +737,15 @@ void QuicChromiumClientSession::OnClosedStream() {
|
| }
|
| }
|
|
|
| +void QuicChromiumClientSession::OnConfigNegotiated() {
|
| + QuicClientSessionBase::OnConfigNegotiated();
|
| + if (stream_factory_ && config()->HasReceivedAlternateServerAddress()) {
|
| + // Server has sent an alternate address to connect to.
|
| + stream_factory_->MigrateSessionToNewPeerAddress(
|
| + this, config()->ReceivedAlternateServerAddress(), net_log_, nullptr);
|
| + }
|
| +}
|
| +
|
| void QuicChromiumClientSession::OnCryptoHandshakeEvent(
|
| CryptoHandshakeEvent event) {
|
| if (stream_factory_ && event == HANDSHAKE_CONFIRMED &&
|
|
|