From 1a78a62555be32868418fe52f8e330c9d0f95d5a Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 30 Oct 2012 12:57:26 -0700 Subject: Imported Upstream version 1.49.0 --- .../basic_datagram_socket/send_to/overload3.html | 93 ++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100755 doc/html/boost_asio/reference/basic_datagram_socket/send_to/overload3.html (limited to 'doc/html/boost_asio/reference/basic_datagram_socket/send_to/overload3.html') diff --git a/doc/html/boost_asio/reference/basic_datagram_socket/send_to/overload3.html b/doc/html/boost_asio/reference/basic_datagram_socket/send_to/overload3.html new file mode 100755 index 0000000000..f15ec9fea7 --- /dev/null +++ b/doc/html/boost_asio/reference/basic_datagram_socket/send_to/overload3.html @@ -0,0 +1,93 @@ + + + +basic_datagram_socket::send_to (3 of 3 overloads) + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Send a datagram to the specified endpoint. +

+
template<
+    typename ConstBufferSequence>
+std::size_t send_to(
+    const ConstBufferSequence & buffers,
+    const endpoint_type & destination,
+    socket_base::message_flags flags,
+    boost::system::error_code & ec);
+
+

+ This function is used to send a datagram to the specified remote endpoint. + The function call will block until the data has been sent successfully + or an error occurs. +

+
+ + Parameters +
+
+

+
+
buffers
+

+ One or more data buffers to be sent to the remote endpoint. +

+
destination
+

+ The remote endpoint to which the data will be sent. +

+
flags
+

+ Flags specifying how the send call is to be made. +

+
ec
+

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

+
+
+
+ + Return + Value +
+

+ The number of bytes sent. +

+
+ + + +
+
+
+PrevUpHomeNext +
+ + -- cgit v1.2.3