| 205 | } |
| 206 | |
| 207 | aio_socket_stream* aio_socket_stream::open(aio_handle* handle, |
| 208 | const char* addr, int timeout) |
| 209 | { |
| 210 | return open(handle, addr, NULL, timeout); |
| 211 | } |
| 212 | |
| 213 | aio_socket_stream* aio_socket_stream::open(aio_handle* handle, const char* addr, |
| 214 | const char* local, int timeout) |
nothing calls this directly
no test coverage detected