Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

basic_socket_iostream

Iostream interface for a socket.

template<
    typename Protocol,
    typename StreamSocketService = stream_socket_service<Protocol>,
    typename Time = boost::posix_time::ptime,
    typename TimeTraits = boost::asio::time_traits<Time>,
    typename TimerService = deadline_timer_service<Time, TimeTraits>>
class basic_socket_iostream
Types

Name

Description

duration_type

The duration type.

endpoint_type

The endpoint type.

time_type

The time type.

Member Functions

Name

Description

basic_socket_iostream

Construct a basic_socket_iostream without establishing a connection.

Establish a connection to an endpoint corresponding to a resolver query.

close

Close the connection.

connect

Establish a connection to an endpoint corresponding to a resolver query.

error

Get the last error associated with the stream.

expires_at

Get the stream's expiry time as an absolute time.

Set the stream's expiry time as an absolute time.

expires_from_now

Get the timer's expiry time relative to now.

Set the stream's expiry time relative to now.

rdbuf

Return a pointer to the underlying streambuf.

Requirements

Header: boost/asio/basic_socket_iostream.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext