Home
last modified time | relevance | path

Searched refs:remote_endpoint (Results 1 – 25 of 42) sorted by relevance

12

/third_party/boost/libs/asio/example/cpp03/tutorial/daytime5/
Dserver.cpp37 udp::endpoint remote_endpoint; in main() local
38 socket.receive_from(boost::asio::buffer(recv_buf), remote_endpoint); in main()
44 remote_endpoint, 0, ignored_error); in main()
/third_party/boost/libs/asio/example/cpp03/porthopper/
Dserver.cpp92 tcp::endpoint remote_endpoint = socket->remote_endpoint(ec); in handle_control_request_timer() local
98 udp::endpoint old_endpoint(remote_endpoint.address(), old_port); in handle_control_request_timer()
106 udp::endpoint new_endpoint(remote_endpoint.address(), new_port); in handle_control_request_timer()
Dclient.cpp44 tcp::endpoint remote_endpoint = *resolver.resolve(host_name, port).begin(); in main() local
48 control_socket.connect(remote_endpoint); in main()
/third_party/boost/doc/html/boost_asio/example/cpp03/porthopper/
Dserver.cpp92 tcp::endpoint remote_endpoint = socket->remote_endpoint(ec); in handle_control_request_timer() local
98 udp::endpoint old_endpoint(remote_endpoint.address(), old_port); in handle_control_request_timer()
106 udp::endpoint new_endpoint(remote_endpoint.address(), new_port); in handle_control_request_timer()
Dclient.cpp44 tcp::endpoint remote_endpoint = *resolver.resolve(host_name, port).begin(); in main() local
48 control_socket.connect(remote_endpoint); in main()
/third_party/nghttp2/src/
Dasio_server_request.cc53 const boost::asio::ip::tcp::endpoint &request::remote_endpoint() const { in remote_endpoint() function in nghttp2::asio_http2::server::request
54 return impl_->remote_endpoint(); in remote_endpoint()
Dasio_server_request_impl.h58 const boost::asio::ip::tcp::endpoint &remote_endpoint() const;
59 void remote_endpoint(boost::asio::ip::tcp::endpoint ep);
Dasio_server_request_impl.cc57 const boost::asio::ip::tcp::endpoint &request_impl::remote_endpoint() const { in remote_endpoint() function in nghttp2::asio_http2::server::request_impl
61 void request_impl::remote_endpoint(boost::asio::ip::tcp::endpoint ep) { in remote_endpoint() function in nghttp2::asio_http2::server::request_impl
Dasio_server_http2_handler.cc147 req.remote_endpoint(handler->remote_endpoint()); in on_frame_recv_callback()
483 const boost::asio::ip::tcp::endpoint &http2_handler::remote_endpoint() { in remote_endpoint() function in nghttp2::asio_http2::server::http2_handler
Dasio_server_http2_handler.h93 const boost::asio::ip::tcp::endpoint &remote_endpoint();
Dasio_server_connection.h92 GET_IO_SERVICE(socket_), socket_.lowest_layer().remote_endpoint(ec), in start()
/third_party/boost/libs/beast/include/boost/beast/_experimental/test/
Dtcp.hpp58 s1.remote_endpoint() == s2.local_endpoint())) in connect()
61 s2.remote_endpoint() == s1.local_endpoint())) in connect()
/third_party/boost/boost/beast/_experimental/test/
Dtcp.hpp58 s1.remote_endpoint() == s2.local_endpoint())) in connect()
61 s2.remote_endpoint() == s1.local_endpoint())) in connect()
/third_party/boost/libs/asio/doc/overview/
Dbsd_sockets.qbk112 …[ For TCP: [link boost_asio.reference.basic_socket.remote_endpoint ip::tcp::socket::remote_endpoin…
114 …For UDP: [link boost_asio.reference.basic_socket.remote_endpoint ip::udp::socket::remote_endpoint(…
116 … [link boost_asio.reference.basic_socket.remote_endpoint basic_socket::remote_endpoint()] ]
/third_party/boost/libs/asio/test/generic/
Dseq_packet_protocol.cpp157 spp::endpoint endpoint3 = socket1.remote_endpoint(); in test()
159 spp::endpoint endpoint4 = socket1.remote_endpoint(ec); in test()
Dstream_protocol.cpp177 sp::endpoint endpoint3 = socket1.remote_endpoint(); in test()
179 sp::endpoint endpoint4 = socket1.remote_endpoint(ec); in test()
Draw_protocol.cpp161 rp::endpoint endpoint3 = socket1.remote_endpoint(); in test()
163 rp::endpoint endpoint4 = socket1.remote_endpoint(ec); in test()
Ddatagram_protocol.cpp161 dp::endpoint endpoint3 = socket1.remote_endpoint(); in test()
163 dp::endpoint endpoint4 = socket1.remote_endpoint(ec); in test()
/third_party/boost/libs/asio/test/local/
Dstream_protocol.cpp147 sp::endpoint endpoint3 = socket1.remote_endpoint(); in test()
149 sp::endpoint endpoint4 = socket1.remote_endpoint(ec); in test()
Ddatagram_protocol.cpp139 dp::endpoint endpoint3 = socket1.remote_endpoint(); in test()
141 dp::endpoint endpoint4 = socket1.remote_endpoint(ec); in test()
/third_party/boost/libs/asio/include/boost/asio/
Dbasic_socket.hpp1605 endpoint_type remote_endpoint() const in remote_endpoint() function in boost::asio::basic_socket
1608 endpoint_type ep = impl_.get_service().remote_endpoint( in remote_endpoint()
1635 endpoint_type remote_endpoint(boost::system::error_code& ec) const in remote_endpoint() function in boost::asio::basic_socket
1637 return impl_.get_service().remote_endpoint(impl_.get_implementation(), ec); in remote_endpoint()
/third_party/boost/boost/asio/
Dbasic_socket.hpp1605 endpoint_type remote_endpoint() const in remote_endpoint() function in boost::asio::basic_socket
1608 endpoint_type ep = impl_.get_service().remote_endpoint( in remote_endpoint()
1635 endpoint_type remote_endpoint(boost::system::error_code& ec) const in remote_endpoint() function in boost::asio::basic_socket
1637 return impl_.get_service().remote_endpoint(impl_.get_implementation(), ec); in remote_endpoint()
/third_party/boost/boost/asio/detail/
Dwin_iocp_socket_service.hpp99 endpoint_type remote_endpoint() const in remote_endpoint() function in boost::asio::detail::win_iocp_socket_service::native_handle_type
221 impl.remote_endpoint_ = native_socket.remote_endpoint(); in assign()
280 endpoint_type remote_endpoint(const implementation_type& impl, in remote_endpoint() function in boost::asio::detail::win_iocp_socket_service
/third_party/boost/libs/asio/include/boost/asio/detail/
Dwin_iocp_socket_service.hpp99 endpoint_type remote_endpoint() const in remote_endpoint() function in boost::asio::detail::win_iocp_socket_service::native_handle_type
221 impl.remote_endpoint_ = native_socket.remote_endpoint(); in assign()
280 endpoint_type remote_endpoint(const implementation_type& impl, in remote_endpoint() function in boost::asio::detail::win_iocp_socket_service
/third_party/nghttp2/src/includes/nghttp2/
Dasio_http2_server.h63 const boost::asio::ip::tcp::endpoint &remote_endpoint() const;

12