| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2009 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 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 void TestUdpIPv6(); | 55 void TestUdpIPv6(); |
| 56 void TestUdpReadyToSendIPv4(); | 56 void TestUdpReadyToSendIPv4(); |
| 57 void TestUdpReadyToSendIPv6(); | 57 void TestUdpReadyToSendIPv6(); |
| 58 void TestGetSetOptionsIPv4(); | 58 void TestGetSetOptionsIPv4(); |
| 59 void TestGetSetOptionsIPv6(); | 59 void TestGetSetOptionsIPv6(); |
| 60 | 60 |
| 61 static const int kTimeout = 5000; // ms | 61 static const int kTimeout = 5000; // ms |
| 62 const IPAddress kIPv4Loopback; | 62 const IPAddress kIPv4Loopback; |
| 63 const IPAddress kIPv6Loopback; | 63 const IPAddress kIPv6Loopback; |
| 64 | 64 |
| 65 protected: |
| 66 void TcpInternal(const IPAddress& loopback, size_t data_size, |
| 67 ssize_t max_send_size); |
| 68 |
| 65 private: | 69 private: |
| 66 void ConnectInternal(const IPAddress& loopback); | 70 void ConnectInternal(const IPAddress& loopback); |
| 67 void ConnectWithDnsLookupInternal(const IPAddress& loopback, | 71 void ConnectWithDnsLookupInternal(const IPAddress& loopback, |
| 68 const std::string& host); | 72 const std::string& host); |
| 69 void ConnectFailInternal(const IPAddress& loopback); | 73 void ConnectFailInternal(const IPAddress& loopback); |
| 70 | 74 |
| 71 void ConnectWithDnsLookupFailInternal(const IPAddress& loopback); | 75 void ConnectWithDnsLookupFailInternal(const IPAddress& loopback); |
| 72 void ConnectWithClosedSocketInternal(const IPAddress& loopback); | 76 void ConnectWithClosedSocketInternal(const IPAddress& loopback); |
| 73 void ConnectWhileNotClosedInternal(const IPAddress& loopback); | 77 void ConnectWhileNotClosedInternal(const IPAddress& loopback); |
| 74 void ServerCloseDuringConnectInternal(const IPAddress& loopback); | 78 void ServerCloseDuringConnectInternal(const IPAddress& loopback); |
| 75 void ClientCloseDuringConnectInternal(const IPAddress& loopback); | 79 void ClientCloseDuringConnectInternal(const IPAddress& loopback); |
| 76 void ServerCloseInternal(const IPAddress& loopback); | 80 void ServerCloseInternal(const IPAddress& loopback); |
| 77 void CloseInClosedCallbackInternal(const IPAddress& loopback); | 81 void CloseInClosedCallbackInternal(const IPAddress& loopback); |
| 78 void SocketServerWaitInternal(const IPAddress& loopback); | 82 void SocketServerWaitInternal(const IPAddress& loopback); |
| 79 void TcpInternal(const IPAddress& loopback); | |
| 80 void SingleFlowControlCallbackInternal(const IPAddress& loopback); | 83 void SingleFlowControlCallbackInternal(const IPAddress& loopback); |
| 81 void UdpInternal(const IPAddress& loopback); | 84 void UdpInternal(const IPAddress& loopback); |
| 82 void UdpReadyToSend(const IPAddress& loopback); | 85 void UdpReadyToSend(const IPAddress& loopback); |
| 83 void GetSetOptionsInternal(const IPAddress& loopback); | 86 void GetSetOptionsInternal(const IPAddress& loopback); |
| 84 | 87 |
| 85 SocketServer* ss_; | 88 SocketServer* ss_; |
| 86 }; | 89 }; |
| 87 | 90 |
| 88 // For unbound sockets, GetLocalAddress / GetRemoteAddress return AF_UNSPEC | 91 // For unbound sockets, GetLocalAddress / GetRemoteAddress return AF_UNSPEC |
| 89 // values on Windows, but an empty address of the same family on Linux/MacOS X. | 92 // values on Windows, but an empty address of the same family on Linux/MacOS X. |
| 90 bool IsUnspecOrEmptyIP(const IPAddress& address); | 93 bool IsUnspecOrEmptyIP(const IPAddress& address); |
| 91 | 94 |
| 92 } // namespace rtc | 95 } // namespace rtc |
| 93 | 96 |
| 94 #endif // WEBRTC_BASE_SOCKET_UNITTEST_H_ | 97 #endif // WEBRTC_BASE_SOCKET_UNITTEST_H_ |
| OLD | NEW |