From 5cde13f21d36c7224b0e13d11c4b49379ae5210d Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 6 Oct 2016 10:38:45 +0900 Subject: Imported Upstream version 1.61.0 Change-Id: I96a1f878d1e6164f01e9aadd5147f38fca448d90 Signed-off-by: DongHun Kwak --- .../remote_endpoint/overload2.html | 92 ---------------------- 1 file changed, 92 deletions(-) delete mode 100644 doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint/overload2.html (limited to 'doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint/overload2.html') diff --git a/doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint/overload2.html b/doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint/overload2.html deleted file mode 100644 index b1caffabac..0000000000 --- a/doc/html/boost_asio/reference/basic_stream_socket/remote_endpoint/overload2.html +++ /dev/null @@ -1,92 +0,0 @@ - - - -basic_stream_socket::remote_endpoint (2 of 2 overloads) - - - - - - - - - - - - - - - -
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
-
-
-PrevUpHomeNext -
-
- -

- Inherited from basic_socket. -

-

- Get the remote endpoint of the socket. -

-
endpoint_type remote_endpoint(
-    boost::system::error_code & ec) const;
-
-

- This function is used to obtain the remote endpoint of the socket. -

-
- - Parameters -
-
-

-
-
ec
-

- Set to indicate what error occurred, if any. -

-
-
-
- - Return - Value -
-

- An object that represents the remote endpoint of the socket. Returns - a default-constructed endpoint object if an error occurred. -

-
- - Example -
-
boost::asio::ip::tcp::socket socket(io_service);
-...
-boost::system::error_code ec;
-boost::asio::ip::tcp::endpoint endpoint = socket.remote_endpoint(ec);
-if (ec)
-{
-  // An error occurred.
-}
-
-
- - - -
-
-
-PrevUpHomeNext -
- - -- cgit v1.2.3