| 90 | #ifndef WIN32 // Windows does not have socketpair(2). |
| 91 | |
| 92 | static void CreateSocketPair(int s[2]) |
| 93 | { |
| 94 | BOOST_REQUIRE_EQUAL(socketpair(AF_UNIX, SOCK_STREAM, 0, s), 0); |
| 95 | } |
| 96 | |
| 97 | static void SendAndRecvMessage(const Sock& sender, const Sock& receiver) |
| 98 | { |
no outgoing calls
no test coverage detected