| Index: net/quic/quic_stream_factory.cc
|
| diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc
|
| index 858f1cb93f0744e9960bd084dcd0393f8b1b04b4..cd045d0fdb8403aa9a569129a1f9fbeb06c63e62 100644
|
| --- a/net/quic/quic_stream_factory.cc
|
| +++ b/net/quic/quic_stream_factory.cc
|
| @@ -688,7 +688,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());
|
| }
|
| }
|
|
|
| @@ -1343,7 +1343,7 @@ int QuicStreamFactory::ConfigureSocket(
|
| 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;
|
| }
|
| }
|
|
|