Home | History | Annotate | Download | only in asio

Lines Matching refs:connect

338    * or connect operations will be cancelled immediately, and will complete
357 * or connect operations will be cancelled immediately, and will complete
407 * This function causes all outstanding asynchronous connect, send and receive
448 * This function causes all outstanding asynchronous connect, send and receive
606 /// Connect the socket to the specified endpoint.
608 * This function is used to connect a socket to the specified remote endpoint.
613 * connect fails, and the socket was automatically opened, the socket is
626 * socket.connect(endpoint);
629 void connect(const endpoint_type& peer_endpoint)
636 asio::detail::throw_error(ec, "connect");
638 this->get_service().connect(this->get_implementation(), peer_endpoint, ec);
639 asio::detail::throw_error(ec, "connect");
642 /// Connect the socket to the specified endpoint.
644 * This function is used to connect a socket to the specified remote endpoint.
649 * connect fails, and the socket was automatically opened, the socket is
663 * socket.connect(endpoint, ec);
670 asio::error_code connect(const endpoint_type& peer_endpoint,
682 return this->get_service().connect(
686 /// Start an asynchronous connect.
688 * This function is used to asynchronously connect a socket to the specified
692 * connect fails, and the socket was automatically opened, the socket is
715 * // Connect succeeded.