| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/dns/address_sorter_posix.h" | 5 #include "net/dns/address_sorter_posix.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "net/base/ip_address.h" | 10 #include "net/base/ip_address.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 int Read(IOBuffer*, int, const CompletionCallback&) override { | 40 int Read(IOBuffer*, int, const CompletionCallback&) override { |
| 41 NOTIMPLEMENTED(); | 41 NOTIMPLEMENTED(); |
| 42 return OK; | 42 return OK; |
| 43 } | 43 } |
| 44 int Write(IOBuffer*, int, const CompletionCallback&) override { | 44 int Write(IOBuffer*, int, const CompletionCallback&) override { |
| 45 NOTIMPLEMENTED(); | 45 NOTIMPLEMENTED(); |
| 46 return OK; | 46 return OK; |
| 47 } | 47 } |
| 48 int SetReceiveBufferSize(int32_t) override { return OK; } | 48 int SetReceiveBufferSize(int32_t) override { return OK; } |
| 49 int SetSendBufferSize(int32_t) override { return OK; } | 49 int SetSendBufferSize(int32_t) override { return OK; } |
| 50 int SetDoNotFragment() override { return OK; } |
| 50 | 51 |
| 51 void Close() override {} | 52 void Close() override {} |
| 52 int GetPeerAddress(IPEndPoint* address) const override { | 53 int GetPeerAddress(IPEndPoint* address) const override { |
| 53 NOTIMPLEMENTED(); | 54 NOTIMPLEMENTED(); |
| 54 return OK; | 55 return OK; |
| 55 } | 56 } |
| 56 int GetLocalAddress(IPEndPoint* address) const override { | 57 int GetLocalAddress(IPEndPoint* address) const override { |
| 57 if (!connected_) | 58 if (!connected_) |
| 58 return ERR_UNEXPECTED; | 59 return ERR_UNEXPECTED; |
| 59 *address = local_endpoint_; | 60 *address = local_endpoint_; |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 AddMapping("4000::1", "4000::10"); // global unicast | 327 AddMapping("4000::1", "4000::10"); // global unicast |
| 327 AddMapping("ff32::2", "fe81::20"); // deprecated link-local multicast | 328 AddMapping("ff32::2", "fe81::20"); // deprecated link-local multicast |
| 328 GetSourceInfo("fe81::20")->deprecated = true; | 329 GetSourceInfo("fe81::20")->deprecated = true; |
| 329 const char* const addresses[] = { "ff3e::1", "ff32::2", "4000::1", "ff32::1", | 330 const char* const addresses[] = { "ff3e::1", "ff32::2", "4000::1", "ff32::1", |
| 330 "::1", "8.0.0.1", NULL }; | 331 "::1", "8.0.0.1", NULL }; |
| 331 const int order[] = { 4, 3, 0, 2, 1, -1 }; | 332 const int order[] = { 4, 3, 0, 2, 1, -1 }; |
| 332 Verify(addresses, order); | 333 Verify(addresses, order); |
| 333 } | 334 } |
| 334 | 335 |
| 335 } // namespace net | 336 } // namespace net |
| OLD | NEW |