| Index: net/dns/address_sorter_win.cc
|
| diff --git a/net/dns/address_sorter_win.cc b/net/dns/address_sorter_win.cc
|
| index 816b42d0b4404cf546d46bc9ed1f51db3d1d0bd4..9f9e0c393c105a05af71a71d5836e62bde26c98c 100644
|
| --- a/net/dns/address_sorter_win.cc
|
| +++ b/net/dns/address_sorter_win.cc
|
| @@ -60,7 +60,7 @@ class AddressSorterWin : public AddressSorter {
|
| IPEndPoint ipe = list[i];
|
| // Addresses must be sockaddr_in6.
|
| if (ipe.GetFamily() == ADDRESS_FAMILY_IPV4) {
|
| - ipe = IPEndPoint(ConvertIPv4NumberToIPv6Number(ipe.address()),
|
| + ipe = IPEndPoint(ConvertIPv4NumberToIPv6Number(ipe.address_number()),
|
| ipe.port());
|
| }
|
|
|
| @@ -116,9 +116,9 @@ class AddressSorterWin : public AddressSorter {
|
| DCHECK(result) << "Unable to roundtrip between IPEndPoint and "
|
| << "SOCKET_ADDRESS!";
|
| // Unmap V4MAPPED IPv6 addresses so that Happy Eyeballs works.
|
| - if (IsIPv4Mapped(ipe.address())) {
|
| - ipe = IPEndPoint(ConvertIPv4MappedToIPv4(ipe.address()),
|
| - ipe.port());
|
| + if (IsIPv4Mapped(ipe.address_number())) {
|
| + ipe = IPEndPoint(ConvertIPv4MappedToIPv4(ipe.address_number()),
|
| + ipe.port());
|
| }
|
| list.push_back(ipe);
|
| }
|
|
|