| 423 | } |
| 424 | |
| 425 | void Socket::SocketPair(SOCKET s[2]) |
| 426 | { |
| 427 | if (dumb_socketpair(s, 0) < 0) |
| 428 | BOOST_THROW_EXCEPTION(socket_error() |
| 429 | << boost::errinfo_api_function("socketpair") |
| 430 | << boost::errinfo_errno(errno)); |
| 431 | } |
nothing calls this directly
no test coverage detected