![]() |
zeep::http::connection
// In header: <zeep/http/connection.hpp> class connection : public std::enable_shared_from_this< connection > { public: // construct/copy/destruct connection(connection &) = delete; connection(boost::asio::io_service &, server &); connection & operator=(connection &) = delete; // public member functions void start(); void handle_read(boost::system::error_code, size_t); void handle_write(boost::system::error_code, size_t); boost::asio::ip::tcp::socket & get_socket(); };
The HTTP server implementation of libzeep is inspired by the example code as provided by boost::asio. These objects are not to be used directly.
connection
public
construct/copy/destructconnection(connection &) = delete;
connection(boost::asio::io_service & service, server & handler);
connection & operator=(connection &) = delete;