| 28 | } |
| 29 | |
| 30 | static SOCKET CreateSocket() |
| 31 | { |
| 32 | const SOCKET s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); |
| 33 | BOOST_REQUIRE(s != static_cast<SOCKET>(SOCKET_ERROR)); |
| 34 | return s; |
| 35 | } |
| 36 | |
| 37 | BOOST_AUTO_TEST_CASE(constructor_and_destructor) |
| 38 | { |
no outgoing calls
no test coverage detected