// // connect_pair.hpp // ~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_ASIO_LOCAL_CONNECT_PAIR_HPP #define BOOST_ASIO_LOCAL_CONNECT_PAIR_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include #include #include #include #include #include #if defined(BOOST_ASIO_HAS_LOCAL_SOCKETS) \ || defined(GENERATING_DOCUMENTATION) namespace boost { namespace asio { namespace local { /// Create a pair of connected sockets. template void connect_pair( basic_socket& socket1, basic_socket& socket2); /// Create a pair of connected sockets. template boost::system::error_code connect_pair( basic_socket& socket1, basic_socket& socket2, boost::system::error_code& ec); template inline void connect_pair( basic_socket& socket1, basic_socket& socket2) { boost::system::error_code ec; connect_pair(socket1, socket2, ec); boost::asio::detail::throw_error(ec); } template inline boost::system::error_code connect_pair( basic_socket& socket1, basic_socket& socket2, boost::system::error_code& ec) { // Check that this function is only being used with a UNIX domain socket. boost::asio::local::basic_endpoint* tmp = static_cast(0); (void)tmp; Protocol protocol; boost::asio::detail::socket_type sv[2]; if (boost::asio::detail::socket_ops::socketpair(protocol.family(), protocol.type(), protocol.protocol(), sv, ec) == boost::asio::detail::socket_error_retval) return ec; if (socket1.assign(protocol, sv[0], ec)) { boost::system::error_code temp_ec; boost::asio::detail::socket_ops::close(sv[0], temp_ec); boost::asio::detail::socket_ops::close(sv[1], temp_ec); return ec; } if (socket2.assign(protocol, sv[1], ec)) { boost::system::error_code temp_ec; socket1.close(temp_ec); boost::asio::detail::socket_ops::close(sv[1], temp_ec); return ec; } return ec; } } // namespace local } // namespace asio } // namespace boost #endif // defined(BOOST_ASIO_HAS_LOCAL_SOCKETS) // || defined(GENERATING_DOCUMENTATION) #include #endif // BOOST_ASIO_LOCAL_CONNECT_PAIR_HPP