Opens the specified URL.
void open( const url & u);
Parameters
The URL to open.
Exceptions
Thrown on failure.
Example
urdl::read_stream read_stream(io_service); try { read_stream.open("http://www.boost.org"); } catch (boost::system::error_code& e) { std::cerr << e.what() << std::endl; }