| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/base/socketaddress.h" | 11 #include "webrtc/rtc_base/socketaddress.h" |
| 12 | 12 |
| 13 #if defined(WEBRTC_POSIX) | 13 #if defined(WEBRTC_POSIX) |
| 14 #include <sys/types.h> | 14 #include <sys/types.h> |
| 15 #include <sys/socket.h> | 15 #include <sys/socket.h> |
| 16 #include <netinet/in.h> | 16 #include <netinet/in.h> |
| 17 #if defined(OPENBSD) | 17 #if defined(OPENBSD) |
| 18 #include <netinet/in_systm.h> | 18 #include <netinet/in_systm.h> |
| 19 #endif | 19 #endif |
| 20 #if !defined(__native_client__) | 20 #if !defined(__native_client__) |
| 21 #include <netinet/ip.h> | 21 #include <netinet/ip.h> |
| 22 #endif | 22 #endif |
| 23 #include <arpa/inet.h> | 23 #include <arpa/inet.h> |
| 24 #include <netdb.h> | 24 #include <netdb.h> |
| 25 #include <unistd.h> | 25 #include <unistd.h> |
| 26 #endif | 26 #endif |
| 27 | 27 |
| 28 #include <sstream> | 28 #include <sstream> |
| 29 | 29 |
| 30 #include "webrtc/base/byteorder.h" | 30 #include "webrtc/rtc_base/byteorder.h" |
| 31 #include "webrtc/base/checks.h" | 31 #include "webrtc/rtc_base/checks.h" |
| 32 #include "webrtc/base/logging.h" | 32 #include "webrtc/rtc_base/logging.h" |
| 33 #include "webrtc/base/nethelpers.h" | 33 #include "webrtc/rtc_base/nethelpers.h" |
| 34 | 34 |
| 35 #if defined(WEBRTC_WIN) | 35 #if defined(WEBRTC_WIN) |
| 36 #include "webrtc/base/win32.h" | 36 #include "webrtc/rtc_base/win32.h" |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 namespace rtc { | 39 namespace rtc { |
| 40 | 40 |
| 41 SocketAddress::SocketAddress() { | 41 SocketAddress::SocketAddress() { |
| 42 Clear(); | 42 Clear(); |
| 43 } | 43 } |
| 44 | 44 |
| 45 SocketAddress::SocketAddress(const std::string& hostname, int port) { | 45 SocketAddress::SocketAddress(const std::string& hostname, int port) { |
| 46 SetIP(hostname); | 46 SetIP(hostname); |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 SocketAddress EmptySocketAddressWithFamily(int family) { | 330 SocketAddress EmptySocketAddressWithFamily(int family) { |
| 331 if (family == AF_INET) { | 331 if (family == AF_INET) { |
| 332 return SocketAddress(IPAddress(INADDR_ANY), 0); | 332 return SocketAddress(IPAddress(INADDR_ANY), 0); |
| 333 } else if (family == AF_INET6) { | 333 } else if (family == AF_INET6) { |
| 334 return SocketAddress(IPAddress(in6addr_any), 0); | 334 return SocketAddress(IPAddress(in6addr_any), 0); |
| 335 } | 335 } |
| 336 return SocketAddress(); | 336 return SocketAddress(); |
| 337 } | 337 } |
| 338 | 338 |
| 339 } // namespace rtc | 339 } // namespace rtc |
| OLD | NEW |