| Index: net/quic/quic_stream_factory.cc
|
| diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc
|
| index 18061d53b03492cfc18e1a85b702340ef7d4cc05..3b6af2368770a8063911ff7d4a9780d99dda6fc0 100644
|
| --- a/net/quic/quic_stream_factory.cc
|
| +++ b/net/quic/quic_stream_factory.cc
|
| @@ -685,7 +685,7 @@ void QuicStreamFactory::set_require_confirmation(bool require_confirmation) {
|
| require_confirmation_ = require_confirmation;
|
| if (!(local_address_ == IPEndPoint())) {
|
| http_server_properties_->SetSupportsQuic(!require_confirmation,
|
| - local_address_.address());
|
| + local_address_.address().bytes());
|
| }
|
| }
|
|
|
| @@ -1264,7 +1264,7 @@ int QuicStreamFactory::CreateSession(const QuicServerId& server_id,
|
| check_persisted_supports_quic_ = false;
|
| IPAddressNumber last_address;
|
| if (http_server_properties_->GetSupportsQuic(&last_address) &&
|
| - last_address == local_address_.address()) {
|
| + last_address == local_address_.address().bytes()) {
|
| require_confirmation_ = false;
|
| }
|
| }
|
|
|