| 1830 | } |
| 1831 | |
| 1832 | THREAD_HANDLE Net2::startThread(THREAD_FUNC_RETURN (*func)(void*), void* arg, int stackSize, const char* name) { |
| 1833 | return ::startThread(func, arg, stackSize, name); |
| 1834 | } |
| 1835 | |
| 1836 | Future<Reference<IConnection>> Net2::connect(NetworkAddress toAddr, tcp::socket* existingSocket) { |
| 1837 | if (toAddr.isTLS()) { |
no test coverage detected