Boost C++ 库

...世界上最受推崇和设计精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu,《C++ 编码规范

basic_raw_socket::async_receive_from - Boost C++ 函数库
PrevUpHomeNext

启动一个异步接收操作。

template<
    typename MutableBufferSequence,
    typename ReadToken = default_completion_token_t<executor_type>>
DEDUCED async_receive_from(
    const MutableBufferSequence & buffers,
    endpoint_type & sender_endpoint,
    ReadToken && token = default_completion_token_t< executor_type >());
  » more...

template<
    typename MutableBufferSequence,
    typename ReadToken = default_completion_token_t<executor_type>>
DEDUCED async_receive_from(
    const MutableBufferSequence & buffers,
    endpoint_type & sender_endpoint,
    socket_base::message_flags flags,
    ReadToken && token = default_completion_token_t< executor_type >());
  » more...

PrevUpHomeNext