Boost C++ 库

...世界上评价最高、设计最精湛的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ Coding Standards

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