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 --- .../basic_stream_socket/shutdown/overload1.html | 95 ---------------------- 1 file changed, 95 deletions(-) delete mode 100644 doc/html/boost_asio/reference/basic_stream_socket/shutdown/overload1.html (limited to 'doc/html/boost_asio/reference/basic_stream_socket/shutdown/overload1.html') diff --git a/doc/html/boost_asio/reference/basic_stream_socket/shutdown/overload1.html b/doc/html/boost_asio/reference/basic_stream_socket/shutdown/overload1.html deleted file mode 100644 index bc15001dc7..0000000000 --- a/doc/html/boost_asio/reference/basic_stream_socket/shutdown/overload1.html +++ /dev/null @@ -1,95 +0,0 @@ - - - -basic_stream_socket::shutdown (1 of 2 overloads) - - - - - - - - - - - - - - - -
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
-
-
-PrevUpHomeNext -
-
- -

- Inherited from basic_socket. -

-

- Disable sends or receives on the socket. -

-
void shutdown(
-    shutdown_type what);
-
-

- This function is used to disable send operations, receive operations, - or both. -

-
- - Parameters -
-
-

-
-
what
-

- Determines what types of operation will no longer be allowed. -

-
-
-
- - Exceptions -
-
-

-
-
boost::system::system_error
-

- Thrown on failure. -

-
-
-
- - Example -
-

- Shutting down the send side of the socket: -

-
boost::asio::ip::tcp::socket socket(io_service);
-...
-socket.shutdown(boost::asio::ip::tcp::socket::shutdown_send);
-
-
- - - -
-
-
-PrevUpHomeNext -
- - -- cgit v1.2.3