basic_raw_socket.hpp 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942
  1. //
  2. // basic_raw_socket.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_BASIC_RAW_SOCKET_HPP
  11. #define BOOST_ASIO_BASIC_RAW_SOCKET_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <cstddef>
  17. #include <boost/asio/basic_socket.hpp>
  18. #include <boost/asio/detail/handler_type_requirements.hpp>
  19. #include <boost/asio/detail/throw_error.hpp>
  20. #include <boost/asio/detail/type_traits.hpp>
  21. #include <boost/asio/error.hpp>
  22. #include <boost/asio/raw_socket_service.hpp>
  23. #include <boost/asio/detail/push_options.hpp>
  24. namespace boost {
  25. namespace asio {
  26. /// Provides raw-oriented socket functionality.
  27. /**
  28. * The basic_raw_socket class template provides asynchronous and blocking
  29. * raw-oriented socket functionality.
  30. *
  31. * @par Thread Safety
  32. * @e Distinct @e objects: Safe.@n
  33. * @e Shared @e objects: Unsafe.
  34. */
  35. template <typename Protocol,
  36. typename RawSocketService = raw_socket_service<Protocol> >
  37. class basic_raw_socket
  38. : public basic_socket<Protocol, RawSocketService>
  39. {
  40. public:
  41. /// (Deprecated: Use native_handle_type.) The native representation of a
  42. /// socket.
  43. typedef typename RawSocketService::native_handle_type native_type;
  44. /// The native representation of a socket.
  45. typedef typename RawSocketService::native_handle_type native_handle_type;
  46. /// The protocol type.
  47. typedef Protocol protocol_type;
  48. /// The endpoint type.
  49. typedef typename Protocol::endpoint endpoint_type;
  50. /// Construct a basic_raw_socket without opening it.
  51. /**
  52. * This constructor creates a raw socket without opening it. The open()
  53. * function must be called before data can be sent or received on the socket.
  54. *
  55. * @param io_service The io_service object that the raw socket will use
  56. * to dispatch handlers for any asynchronous operations performed on the
  57. * socket.
  58. */
  59. explicit basic_raw_socket(boost::asio::io_service& io_service)
  60. : basic_socket<Protocol, RawSocketService>(io_service)
  61. {
  62. }
  63. /// Construct and open a basic_raw_socket.
  64. /**
  65. * This constructor creates and opens a raw socket.
  66. *
  67. * @param io_service The io_service object that the raw socket will use
  68. * to dispatch handlers for any asynchronous operations performed on the
  69. * socket.
  70. *
  71. * @param protocol An object specifying protocol parameters to be used.
  72. *
  73. * @throws boost::system::system_error Thrown on failure.
  74. */
  75. basic_raw_socket(boost::asio::io_service& io_service,
  76. const protocol_type& protocol)
  77. : basic_socket<Protocol, RawSocketService>(io_service, protocol)
  78. {
  79. }
  80. /// Construct a basic_raw_socket, opening it and binding it to the given
  81. /// local endpoint.
  82. /**
  83. * This constructor creates a raw socket and automatically opens it bound
  84. * to the specified endpoint on the local machine. The protocol used is the
  85. * protocol associated with the given endpoint.
  86. *
  87. * @param io_service The io_service object that the raw socket will use
  88. * to dispatch handlers for any asynchronous operations performed on the
  89. * socket.
  90. *
  91. * @param endpoint An endpoint on the local machine to which the raw
  92. * socket will be bound.
  93. *
  94. * @throws boost::system::system_error Thrown on failure.
  95. */
  96. basic_raw_socket(boost::asio::io_service& io_service,
  97. const endpoint_type& endpoint)
  98. : basic_socket<Protocol, RawSocketService>(io_service, endpoint)
  99. {
  100. }
  101. /// Construct a basic_raw_socket on an existing native socket.
  102. /**
  103. * This constructor creates a raw socket object to hold an existing
  104. * native socket.
  105. *
  106. * @param io_service The io_service object that the raw socket will use
  107. * to dispatch handlers for any asynchronous operations performed on the
  108. * socket.
  109. *
  110. * @param protocol An object specifying protocol parameters to be used.
  111. *
  112. * @param native_socket The new underlying socket implementation.
  113. *
  114. * @throws boost::system::system_error Thrown on failure.
  115. */
  116. basic_raw_socket(boost::asio::io_service& io_service,
  117. const protocol_type& protocol, const native_handle_type& native_socket)
  118. : basic_socket<Protocol, RawSocketService>(
  119. io_service, protocol, native_socket)
  120. {
  121. }
  122. #if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  123. /// Move-construct a basic_raw_socket from another.
  124. /**
  125. * This constructor moves a raw socket from one object to another.
  126. *
  127. * @param other The other basic_raw_socket object from which the move
  128. * will occur.
  129. *
  130. * @note Following the move, the moved-from object is in the same state as if
  131. * constructed using the @c basic_raw_socket(io_service&) constructor.
  132. */
  133. basic_raw_socket(basic_raw_socket&& other)
  134. : basic_socket<Protocol, RawSocketService>(
  135. BOOST_ASIO_MOVE_CAST(basic_raw_socket)(other))
  136. {
  137. }
  138. /// Move-assign a basic_raw_socket from another.
  139. /**
  140. * This assignment operator moves a raw socket from one object to another.
  141. *
  142. * @param other The other basic_raw_socket object from which the move
  143. * will occur.
  144. *
  145. * @note Following the move, the moved-from object is in the same state as if
  146. * constructed using the @c basic_raw_socket(io_service&) constructor.
  147. */
  148. basic_raw_socket& operator=(basic_raw_socket&& other)
  149. {
  150. basic_socket<Protocol, RawSocketService>::operator=(
  151. BOOST_ASIO_MOVE_CAST(basic_raw_socket)(other));
  152. return *this;
  153. }
  154. /// Move-construct a basic_raw_socket from a socket of another protocol type.
  155. /**
  156. * This constructor moves a raw socket from one object to another.
  157. *
  158. * @param other The other basic_raw_socket object from which the move will
  159. * occur.
  160. *
  161. * @note Following the move, the moved-from object is in the same state as if
  162. * constructed using the @c basic_raw_socket(io_service&) constructor.
  163. */
  164. template <typename Protocol1, typename RawSocketService1>
  165. basic_raw_socket(basic_raw_socket<Protocol1, RawSocketService1>&& other,
  166. typename enable_if<is_convertible<Protocol1, Protocol>::value>::type* = 0)
  167. : basic_socket<Protocol, RawSocketService>(
  168. BOOST_ASIO_MOVE_CAST2(basic_raw_socket<
  169. Protocol1, RawSocketService1>)(other))
  170. {
  171. }
  172. /// Move-assign a basic_raw_socket from a socket of another protocol type.
  173. /**
  174. * This assignment operator moves a raw socket from one object to another.
  175. *
  176. * @param other The other basic_raw_socket object from which the move
  177. * will occur.
  178. *
  179. * @note Following the move, the moved-from object is in the same state as if
  180. * constructed using the @c basic_raw_socket(io_service&) constructor.
  181. */
  182. template <typename Protocol1, typename RawSocketService1>
  183. typename enable_if<is_convertible<Protocol1, Protocol>::value,
  184. basic_raw_socket>::type& operator=(
  185. basic_raw_socket<Protocol1, RawSocketService1>&& other)
  186. {
  187. basic_socket<Protocol, RawSocketService>::operator=(
  188. BOOST_ASIO_MOVE_CAST2(basic_raw_socket<
  189. Protocol1, RawSocketService1>)(other));
  190. return *this;
  191. }
  192. #endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
  193. /// Send some data on a connected socket.
  194. /**
  195. * This function is used to send data on the raw socket. The function call
  196. * will block until the data has been sent successfully or an error occurs.
  197. *
  198. * @param buffers One ore more data buffers to be sent on the socket.
  199. *
  200. * @returns The number of bytes sent.
  201. *
  202. * @throws boost::system::system_error Thrown on failure.
  203. *
  204. * @note The send operation can only be used with a connected socket. Use
  205. * the send_to function to send data on an unconnected raw socket.
  206. *
  207. * @par Example
  208. * To send a single data buffer use the @ref buffer function as follows:
  209. * @code socket.send(boost::asio::buffer(data, size)); @endcode
  210. * See the @ref buffer documentation for information on sending multiple
  211. * buffers in one go, and how to use it with arrays, boost::array or
  212. * std::vector.
  213. */
  214. template <typename ConstBufferSequence>
  215. std::size_t send(const ConstBufferSequence& buffers)
  216. {
  217. boost::system::error_code ec;
  218. std::size_t s = this->get_service().send(
  219. this->get_implementation(), buffers, 0, ec);
  220. boost::asio::detail::throw_error(ec, "send");
  221. return s;
  222. }
  223. /// Send some data on a connected socket.
  224. /**
  225. * This function is used to send data on the raw socket. The function call
  226. * will block until the data has been sent successfully or an error occurs.
  227. *
  228. * @param buffers One ore more data buffers to be sent on the socket.
  229. *
  230. * @param flags Flags specifying how the send call is to be made.
  231. *
  232. * @returns The number of bytes sent.
  233. *
  234. * @throws boost::system::system_error Thrown on failure.
  235. *
  236. * @note The send operation can only be used with a connected socket. Use
  237. * the send_to function to send data on an unconnected raw socket.
  238. */
  239. template <typename ConstBufferSequence>
  240. std::size_t send(const ConstBufferSequence& buffers,
  241. socket_base::message_flags flags)
  242. {
  243. boost::system::error_code ec;
  244. std::size_t s = this->get_service().send(
  245. this->get_implementation(), buffers, flags, ec);
  246. boost::asio::detail::throw_error(ec, "send");
  247. return s;
  248. }
  249. /// Send some data on a connected socket.
  250. /**
  251. * This function is used to send data on the raw socket. The function call
  252. * will block until the data has been sent successfully or an error occurs.
  253. *
  254. * @param buffers One or more data buffers to be sent on the socket.
  255. *
  256. * @param flags Flags specifying how the send call is to be made.
  257. *
  258. * @param ec Set to indicate what error occurred, if any.
  259. *
  260. * @returns The number of bytes sent.
  261. *
  262. * @note The send operation can only be used with a connected socket. Use
  263. * the send_to function to send data on an unconnected raw socket.
  264. */
  265. template <typename ConstBufferSequence>
  266. std::size_t send(const ConstBufferSequence& buffers,
  267. socket_base::message_flags flags, boost::system::error_code& ec)
  268. {
  269. return this->get_service().send(
  270. this->get_implementation(), buffers, flags, ec);
  271. }
  272. /// Start an asynchronous send on a connected socket.
  273. /**
  274. * This function is used to send data on the raw socket. The function call
  275. * will block until the data has been sent successfully or an error occurs.
  276. *
  277. * @param buffers One or more data buffers to be sent on the socket. Although
  278. * the buffers object may be copied as necessary, ownership of the underlying
  279. * memory blocks is retained by the caller, which must guarantee that they
  280. * remain valid until the handler is called.
  281. *
  282. * @param handler The handler to be called when the send operation completes.
  283. * Copies will be made of the handler as required. The function signature of
  284. * the handler must be:
  285. * @code void handler(
  286. * const boost::system::error_code& error, // Result of operation.
  287. * std::size_t bytes_transferred // Number of bytes sent.
  288. * ); @endcode
  289. * Regardless of whether the asynchronous operation completes immediately or
  290. * not, the handler will not be invoked from within this function. Invocation
  291. * of the handler will be performed in a manner equivalent to using
  292. * boost::asio::io_service::post().
  293. *
  294. * @note The async_send operation can only be used with a connected socket.
  295. * Use the async_send_to function to send data on an unconnected raw
  296. * socket.
  297. *
  298. * @par Example
  299. * To send a single data buffer use the @ref buffer function as follows:
  300. * @code
  301. * socket.async_send(boost::asio::buffer(data, size), handler);
  302. * @endcode
  303. * See the @ref buffer documentation for information on sending multiple
  304. * buffers in one go, and how to use it with arrays, boost::array or
  305. * std::vector.
  306. */
  307. template <typename ConstBufferSequence, typename WriteHandler>
  308. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  309. void (boost::system::error_code, std::size_t))
  310. async_send(const ConstBufferSequence& buffers,
  311. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  312. {
  313. // If you get an error on the following line it means that your handler does
  314. // not meet the documented type requirements for a WriteHandler.
  315. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  316. return this->get_service().async_send(this->get_implementation(),
  317. buffers, 0, BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  318. }
  319. /// Start an asynchronous send on a connected socket.
  320. /**
  321. * This function is used to send data on the raw socket. The function call
  322. * will block until the data has been sent successfully or an error occurs.
  323. *
  324. * @param buffers One or more data buffers to be sent on the socket. Although
  325. * the buffers object may be copied as necessary, ownership of the underlying
  326. * memory blocks is retained by the caller, which must guarantee that they
  327. * remain valid until the handler is called.
  328. *
  329. * @param flags Flags specifying how the send call is to be made.
  330. *
  331. * @param handler The handler to be called when the send operation completes.
  332. * Copies will be made of the handler as required. The function signature of
  333. * the handler must be:
  334. * @code void handler(
  335. * const boost::system::error_code& error, // Result of operation.
  336. * std::size_t bytes_transferred // Number of bytes sent.
  337. * ); @endcode
  338. * Regardless of whether the asynchronous operation completes immediately or
  339. * not, the handler will not be invoked from within this function. Invocation
  340. * of the handler will be performed in a manner equivalent to using
  341. * boost::asio::io_service::post().
  342. *
  343. * @note The async_send operation can only be used with a connected socket.
  344. * Use the async_send_to function to send data on an unconnected raw
  345. * socket.
  346. */
  347. template <typename ConstBufferSequence, typename WriteHandler>
  348. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  349. void (boost::system::error_code, std::size_t))
  350. async_send(const ConstBufferSequence& buffers,
  351. socket_base::message_flags flags,
  352. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  353. {
  354. // If you get an error on the following line it means that your handler does
  355. // not meet the documented type requirements for a WriteHandler.
  356. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  357. return this->get_service().async_send(this->get_implementation(),
  358. buffers, flags, BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  359. }
  360. /// Send raw data to the specified endpoint.
  361. /**
  362. * This function is used to send raw data to the specified remote endpoint.
  363. * The function call will block until the data has been sent successfully or
  364. * an error occurs.
  365. *
  366. * @param buffers One or more data buffers to be sent to the remote endpoint.
  367. *
  368. * @param destination The remote endpoint to which the data will be sent.
  369. *
  370. * @returns The number of bytes sent.
  371. *
  372. * @throws boost::system::system_error Thrown on failure.
  373. *
  374. * @par Example
  375. * To send a single data buffer use the @ref buffer function as follows:
  376. * @code
  377. * boost::asio::ip::udp::endpoint destination(
  378. * boost::asio::ip::address::from_string("1.2.3.4"), 12345);
  379. * socket.send_to(boost::asio::buffer(data, size), destination);
  380. * @endcode
  381. * See the @ref buffer documentation for information on sending multiple
  382. * buffers in one go, and how to use it with arrays, boost::array or
  383. * std::vector.
  384. */
  385. template <typename ConstBufferSequence>
  386. std::size_t send_to(const ConstBufferSequence& buffers,
  387. const endpoint_type& destination)
  388. {
  389. boost::system::error_code ec;
  390. std::size_t s = this->get_service().send_to(
  391. this->get_implementation(), buffers, destination, 0, ec);
  392. boost::asio::detail::throw_error(ec, "send_to");
  393. return s;
  394. }
  395. /// Send raw data to the specified endpoint.
  396. /**
  397. * This function is used to send raw data to the specified remote endpoint.
  398. * The function call will block until the data has been sent successfully or
  399. * an error occurs.
  400. *
  401. * @param buffers One or more data buffers to be sent to the remote endpoint.
  402. *
  403. * @param destination The remote endpoint to which the data will be sent.
  404. *
  405. * @param flags Flags specifying how the send call is to be made.
  406. *
  407. * @returns The number of bytes sent.
  408. *
  409. * @throws boost::system::system_error Thrown on failure.
  410. */
  411. template <typename ConstBufferSequence>
  412. std::size_t send_to(const ConstBufferSequence& buffers,
  413. const endpoint_type& destination, socket_base::message_flags flags)
  414. {
  415. boost::system::error_code ec;
  416. std::size_t s = this->get_service().send_to(
  417. this->get_implementation(), buffers, destination, flags, ec);
  418. boost::asio::detail::throw_error(ec, "send_to");
  419. return s;
  420. }
  421. /// Send raw data to the specified endpoint.
  422. /**
  423. * This function is used to send raw data to the specified remote endpoint.
  424. * The function call will block until the data has been sent successfully or
  425. * an error occurs.
  426. *
  427. * @param buffers One or more data buffers to be sent to the remote endpoint.
  428. *
  429. * @param destination The remote endpoint to which the data will be sent.
  430. *
  431. * @param flags Flags specifying how the send call is to be made.
  432. *
  433. * @param ec Set to indicate what error occurred, if any.
  434. *
  435. * @returns The number of bytes sent.
  436. */
  437. template <typename ConstBufferSequence>
  438. std::size_t send_to(const ConstBufferSequence& buffers,
  439. const endpoint_type& destination, socket_base::message_flags flags,
  440. boost::system::error_code& ec)
  441. {
  442. return this->get_service().send_to(this->get_implementation(),
  443. buffers, destination, flags, ec);
  444. }
  445. /// Start an asynchronous send.
  446. /**
  447. * This function is used to asynchronously send raw data to the specified
  448. * remote endpoint. The function call always returns immediately.
  449. *
  450. * @param buffers One or more data buffers to be sent to the remote endpoint.
  451. * Although the buffers object may be copied as necessary, ownership of the
  452. * underlying memory blocks is retained by the caller, which must guarantee
  453. * that they remain valid until the handler is called.
  454. *
  455. * @param destination The remote endpoint to which the data will be sent.
  456. * Copies will be made of the endpoint as required.
  457. *
  458. * @param handler The handler to be called when the send operation completes.
  459. * Copies will be made of the handler as required. The function signature of
  460. * the handler must be:
  461. * @code void handler(
  462. * const boost::system::error_code& error, // Result of operation.
  463. * std::size_t bytes_transferred // Number of bytes sent.
  464. * ); @endcode
  465. * Regardless of whether the asynchronous operation completes immediately or
  466. * not, the handler will not be invoked from within this function. Invocation
  467. * of the handler will be performed in a manner equivalent to using
  468. * boost::asio::io_service::post().
  469. *
  470. * @par Example
  471. * To send a single data buffer use the @ref buffer function as follows:
  472. * @code
  473. * boost::asio::ip::udp::endpoint destination(
  474. * boost::asio::ip::address::from_string("1.2.3.4"), 12345);
  475. * socket.async_send_to(
  476. * boost::asio::buffer(data, size), destination, handler);
  477. * @endcode
  478. * See the @ref buffer documentation for information on sending multiple
  479. * buffers in one go, and how to use it with arrays, boost::array or
  480. * std::vector.
  481. */
  482. template <typename ConstBufferSequence, typename WriteHandler>
  483. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  484. void (boost::system::error_code, std::size_t))
  485. async_send_to(const ConstBufferSequence& buffers,
  486. const endpoint_type& destination,
  487. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  488. {
  489. // If you get an error on the following line it means that your handler does
  490. // not meet the documented type requirements for a WriteHandler.
  491. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  492. return this->get_service().async_send_to(this->get_implementation(),
  493. buffers, destination, 0, BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  494. }
  495. /// Start an asynchronous send.
  496. /**
  497. * This function is used to asynchronously send raw data to the specified
  498. * remote endpoint. The function call always returns immediately.
  499. *
  500. * @param buffers One or more data buffers to be sent to the remote endpoint.
  501. * Although the buffers object may be copied as necessary, ownership of the
  502. * underlying memory blocks is retained by the caller, which must guarantee
  503. * that they remain valid until the handler is called.
  504. *
  505. * @param flags Flags specifying how the send call is to be made.
  506. *
  507. * @param destination The remote endpoint to which the data will be sent.
  508. * Copies will be made of the endpoint as required.
  509. *
  510. * @param handler The handler to be called when the send operation completes.
  511. * Copies will be made of the handler as required. The function signature of
  512. * the handler must be:
  513. * @code void handler(
  514. * const boost::system::error_code& error, // Result of operation.
  515. * std::size_t bytes_transferred // Number of bytes sent.
  516. * ); @endcode
  517. * Regardless of whether the asynchronous operation completes immediately or
  518. * not, the handler will not be invoked from within this function. Invocation
  519. * of the handler will be performed in a manner equivalent to using
  520. * boost::asio::io_service::post().
  521. */
  522. template <typename ConstBufferSequence, typename WriteHandler>
  523. BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
  524. void (boost::system::error_code, std::size_t))
  525. async_send_to(const ConstBufferSequence& buffers,
  526. const endpoint_type& destination, socket_base::message_flags flags,
  527. BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
  528. {
  529. // If you get an error on the following line it means that your handler does
  530. // not meet the documented type requirements for a WriteHandler.
  531. BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
  532. return this->get_service().async_send_to(
  533. this->get_implementation(), buffers, destination, flags,
  534. BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
  535. }
  536. /// Receive some data on a connected socket.
  537. /**
  538. * This function is used to receive data on the raw socket. The function
  539. * call will block until data has been received successfully or an error
  540. * occurs.
  541. *
  542. * @param buffers One or more buffers into which the data will be received.
  543. *
  544. * @returns The number of bytes received.
  545. *
  546. * @throws boost::system::system_error Thrown on failure.
  547. *
  548. * @note The receive operation can only be used with a connected socket. Use
  549. * the receive_from function to receive data on an unconnected raw
  550. * socket.
  551. *
  552. * @par Example
  553. * To receive into a single data buffer use the @ref buffer function as
  554. * follows:
  555. * @code socket.receive(boost::asio::buffer(data, size)); @endcode
  556. * See the @ref buffer documentation for information on receiving into
  557. * multiple buffers in one go, and how to use it with arrays, boost::array or
  558. * std::vector.
  559. */
  560. template <typename MutableBufferSequence>
  561. std::size_t receive(const MutableBufferSequence& buffers)
  562. {
  563. boost::system::error_code ec;
  564. std::size_t s = this->get_service().receive(
  565. this->get_implementation(), buffers, 0, ec);
  566. boost::asio::detail::throw_error(ec, "receive");
  567. return s;
  568. }
  569. /// Receive some data on a connected socket.
  570. /**
  571. * This function is used to receive data on the raw socket. The function
  572. * call will block until data has been received successfully or an error
  573. * occurs.
  574. *
  575. * @param buffers One or more buffers into which the data will be received.
  576. *
  577. * @param flags Flags specifying how the receive call is to be made.
  578. *
  579. * @returns The number of bytes received.
  580. *
  581. * @throws boost::system::system_error Thrown on failure.
  582. *
  583. * @note The receive operation can only be used with a connected socket. Use
  584. * the receive_from function to receive data on an unconnected raw
  585. * socket.
  586. */
  587. template <typename MutableBufferSequence>
  588. std::size_t receive(const MutableBufferSequence& buffers,
  589. socket_base::message_flags flags)
  590. {
  591. boost::system::error_code ec;
  592. std::size_t s = this->get_service().receive(
  593. this->get_implementation(), buffers, flags, ec);
  594. boost::asio::detail::throw_error(ec, "receive");
  595. return s;
  596. }
  597. /// Receive some data on a connected socket.
  598. /**
  599. * This function is used to receive data on the raw socket. The function
  600. * call will block until data has been received successfully or an error
  601. * occurs.
  602. *
  603. * @param buffers One or more buffers into which the data will be received.
  604. *
  605. * @param flags Flags specifying how the receive call is to be made.
  606. *
  607. * @param ec Set to indicate what error occurred, if any.
  608. *
  609. * @returns The number of bytes received.
  610. *
  611. * @note The receive operation can only be used with a connected socket. Use
  612. * the receive_from function to receive data on an unconnected raw
  613. * socket.
  614. */
  615. template <typename MutableBufferSequence>
  616. std::size_t receive(const MutableBufferSequence& buffers,
  617. socket_base::message_flags flags, boost::system::error_code& ec)
  618. {
  619. return this->get_service().receive(
  620. this->get_implementation(), buffers, flags, ec);
  621. }
  622. /// Start an asynchronous receive on a connected socket.
  623. /**
  624. * This function is used to asynchronously receive data from the raw
  625. * socket. The function call always returns immediately.
  626. *
  627. * @param buffers One or more buffers into which the data will be received.
  628. * Although the buffers object may be copied as necessary, ownership of the
  629. * underlying memory blocks is retained by the caller, which must guarantee
  630. * that they remain valid until the handler is called.
  631. *
  632. * @param handler The handler to be called when the receive operation
  633. * completes. Copies will be made of the handler as required. The function
  634. * signature of the handler must be:
  635. * @code void handler(
  636. * const boost::system::error_code& error, // Result of operation.
  637. * std::size_t bytes_transferred // Number of bytes received.
  638. * ); @endcode
  639. * Regardless of whether the asynchronous operation completes immediately or
  640. * not, the handler will not be invoked from within this function. Invocation
  641. * of the handler will be performed in a manner equivalent to using
  642. * boost::asio::io_service::post().
  643. *
  644. * @note The async_receive operation can only be used with a connected socket.
  645. * Use the async_receive_from function to receive data on an unconnected
  646. * raw socket.
  647. *
  648. * @par Example
  649. * To receive into a single data buffer use the @ref buffer function as
  650. * follows:
  651. * @code
  652. * socket.async_receive(boost::asio::buffer(data, size), handler);
  653. * @endcode
  654. * See the @ref buffer documentation for information on receiving into
  655. * multiple buffers in one go, and how to use it with arrays, boost::array or
  656. * std::vector.
  657. */
  658. template <typename MutableBufferSequence, typename ReadHandler>
  659. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  660. void (boost::system::error_code, std::size_t))
  661. async_receive(const MutableBufferSequence& buffers,
  662. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  663. {
  664. // If you get an error on the following line it means that your handler does
  665. // not meet the documented type requirements for a ReadHandler.
  666. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  667. return this->get_service().async_receive(this->get_implementation(),
  668. buffers, 0, BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  669. }
  670. /// Start an asynchronous receive on a connected socket.
  671. /**
  672. * This function is used to asynchronously receive data from the raw
  673. * socket. The function call always returns immediately.
  674. *
  675. * @param buffers One or more buffers into which the data will be received.
  676. * Although the buffers object may be copied as necessary, ownership of the
  677. * underlying memory blocks is retained by the caller, which must guarantee
  678. * that they remain valid until the handler is called.
  679. *
  680. * @param flags Flags specifying how the receive call is to be made.
  681. *
  682. * @param handler The handler to be called when the receive operation
  683. * completes. Copies will be made of the handler as required. The function
  684. * signature of the handler must be:
  685. * @code void handler(
  686. * const boost::system::error_code& error, // Result of operation.
  687. * std::size_t bytes_transferred // Number of bytes received.
  688. * ); @endcode
  689. * Regardless of whether the asynchronous operation completes immediately or
  690. * not, the handler will not be invoked from within this function. Invocation
  691. * of the handler will be performed in a manner equivalent to using
  692. * boost::asio::io_service::post().
  693. *
  694. * @note The async_receive operation can only be used with a connected socket.
  695. * Use the async_receive_from function to receive data on an unconnected
  696. * raw socket.
  697. */
  698. template <typename MutableBufferSequence, typename ReadHandler>
  699. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  700. void (boost::system::error_code, std::size_t))
  701. async_receive(const MutableBufferSequence& buffers,
  702. socket_base::message_flags flags,
  703. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  704. {
  705. // If you get an error on the following line it means that your handler does
  706. // not meet the documented type requirements for a ReadHandler.
  707. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  708. return this->get_service().async_receive(this->get_implementation(),
  709. buffers, flags, BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  710. }
  711. /// Receive raw data with the endpoint of the sender.
  712. /**
  713. * This function is used to receive raw data. The function call will block
  714. * until data has been received successfully or an error occurs.
  715. *
  716. * @param buffers One or more buffers into which the data will be received.
  717. *
  718. * @param sender_endpoint An endpoint object that receives the endpoint of
  719. * the remote sender of the data.
  720. *
  721. * @returns The number of bytes received.
  722. *
  723. * @throws boost::system::system_error Thrown on failure.
  724. *
  725. * @par Example
  726. * To receive into a single data buffer use the @ref buffer function as
  727. * follows:
  728. * @code
  729. * boost::asio::ip::udp::endpoint sender_endpoint;
  730. * socket.receive_from(
  731. * boost::asio::buffer(data, size), sender_endpoint);
  732. * @endcode
  733. * See the @ref buffer documentation for information on receiving into
  734. * multiple buffers in one go, and how to use it with arrays, boost::array or
  735. * std::vector.
  736. */
  737. template <typename MutableBufferSequence>
  738. std::size_t receive_from(const MutableBufferSequence& buffers,
  739. endpoint_type& sender_endpoint)
  740. {
  741. boost::system::error_code ec;
  742. std::size_t s = this->get_service().receive_from(
  743. this->get_implementation(), buffers, sender_endpoint, 0, ec);
  744. boost::asio::detail::throw_error(ec, "receive_from");
  745. return s;
  746. }
  747. /// Receive raw data with the endpoint of the sender.
  748. /**
  749. * This function is used to receive raw data. The function call will block
  750. * until data has been received successfully or an error occurs.
  751. *
  752. * @param buffers One or more buffers into which the data will be received.
  753. *
  754. * @param sender_endpoint An endpoint object that receives the endpoint of
  755. * the remote sender of the data.
  756. *
  757. * @param flags Flags specifying how the receive call is to be made.
  758. *
  759. * @returns The number of bytes received.
  760. *
  761. * @throws boost::system::system_error Thrown on failure.
  762. */
  763. template <typename MutableBufferSequence>
  764. std::size_t receive_from(const MutableBufferSequence& buffers,
  765. endpoint_type& sender_endpoint, socket_base::message_flags flags)
  766. {
  767. boost::system::error_code ec;
  768. std::size_t s = this->get_service().receive_from(
  769. this->get_implementation(), buffers, sender_endpoint, flags, ec);
  770. boost::asio::detail::throw_error(ec, "receive_from");
  771. return s;
  772. }
  773. /// Receive raw data with the endpoint of the sender.
  774. /**
  775. * This function is used to receive raw data. The function call will block
  776. * until data has been received successfully or an error occurs.
  777. *
  778. * @param buffers One or more buffers into which the data will be received.
  779. *
  780. * @param sender_endpoint An endpoint object that receives the endpoint of
  781. * the remote sender of the data.
  782. *
  783. * @param flags Flags specifying how the receive call is to be made.
  784. *
  785. * @param ec Set to indicate what error occurred, if any.
  786. *
  787. * @returns The number of bytes received.
  788. */
  789. template <typename MutableBufferSequence>
  790. std::size_t receive_from(const MutableBufferSequence& buffers,
  791. endpoint_type& sender_endpoint, socket_base::message_flags flags,
  792. boost::system::error_code& ec)
  793. {
  794. return this->get_service().receive_from(this->get_implementation(),
  795. buffers, sender_endpoint, flags, ec);
  796. }
  797. /// Start an asynchronous receive.
  798. /**
  799. * This function is used to asynchronously receive raw data. The function
  800. * call always returns immediately.
  801. *
  802. * @param buffers One or more buffers into which the data will be received.
  803. * Although the buffers object may be copied as necessary, ownership of the
  804. * underlying memory blocks is retained by the caller, which must guarantee
  805. * that they remain valid until the handler is called.
  806. *
  807. * @param sender_endpoint An endpoint object that receives the endpoint of
  808. * the remote sender of the data. Ownership of the sender_endpoint object
  809. * is retained by the caller, which must guarantee that it is valid until the
  810. * handler is called.
  811. *
  812. * @param handler The handler to be called when the receive operation
  813. * completes. Copies will be made of the handler as required. The function
  814. * signature of the handler must be:
  815. * @code void handler(
  816. * const boost::system::error_code& error, // Result of operation.
  817. * std::size_t bytes_transferred // Number of bytes received.
  818. * ); @endcode
  819. * Regardless of whether the asynchronous operation completes immediately or
  820. * not, the handler will not be invoked from within this function. Invocation
  821. * of the handler will be performed in a manner equivalent to using
  822. * boost::asio::io_service::post().
  823. *
  824. * @par Example
  825. * To receive into a single data buffer use the @ref buffer function as
  826. * follows:
  827. * @code socket.async_receive_from(
  828. * boost::asio::buffer(data, size), 0, sender_endpoint, handler); @endcode
  829. * See the @ref buffer documentation for information on receiving into
  830. * multiple buffers in one go, and how to use it with arrays, boost::array or
  831. * std::vector.
  832. */
  833. template <typename MutableBufferSequence, typename ReadHandler>
  834. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  835. void (boost::system::error_code, std::size_t))
  836. async_receive_from(const MutableBufferSequence& buffers,
  837. endpoint_type& sender_endpoint,
  838. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  839. {
  840. // If you get an error on the following line it means that your handler does
  841. // not meet the documented type requirements for a ReadHandler.
  842. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  843. return this->get_service().async_receive_from(
  844. this->get_implementation(), buffers, sender_endpoint, 0,
  845. BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  846. }
  847. /// Start an asynchronous receive.
  848. /**
  849. * This function is used to asynchronously receive raw data. The function
  850. * call always returns immediately.
  851. *
  852. * @param buffers One or more buffers into which the data will be received.
  853. * Although the buffers object may be copied as necessary, ownership of the
  854. * underlying memory blocks is retained by the caller, which must guarantee
  855. * that they remain valid until the handler is called.
  856. *
  857. * @param sender_endpoint An endpoint object that receives the endpoint of
  858. * the remote sender of the data. Ownership of the sender_endpoint object
  859. * is retained by the caller, which must guarantee that it is valid until the
  860. * handler is called.
  861. *
  862. * @param flags Flags specifying how the receive call is to be made.
  863. *
  864. * @param handler The handler to be called when the receive operation
  865. * completes. Copies will be made of the handler as required. The function
  866. * signature of the handler must be:
  867. * @code void handler(
  868. * const boost::system::error_code& error, // Result of operation.
  869. * std::size_t bytes_transferred // Number of bytes received.
  870. * ); @endcode
  871. * Regardless of whether the asynchronous operation completes immediately or
  872. * not, the handler will not be invoked from within this function. Invocation
  873. * of the handler will be performed in a manner equivalent to using
  874. * boost::asio::io_service::post().
  875. */
  876. template <typename MutableBufferSequence, typename ReadHandler>
  877. BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
  878. void (boost::system::error_code, std::size_t))
  879. async_receive_from(const MutableBufferSequence& buffers,
  880. endpoint_type& sender_endpoint, socket_base::message_flags flags,
  881. BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
  882. {
  883. // If you get an error on the following line it means that your handler does
  884. // not meet the documented type requirements for a ReadHandler.
  885. BOOST_ASIO_READ_HANDLER_CHECK(ReadHandler, handler) type_check;
  886. return this->get_service().async_receive_from(
  887. this->get_implementation(), buffers, sender_endpoint, flags,
  888. BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
  889. }
  890. };
  891. } // namespace asio
  892. } // namespace boost
  893. #include <boost/asio/detail/pop_options.hpp>
  894. #endif // BOOST_ASIO_BASIC_RAW_SOCKET_HPP