working draft of tcp_connection

This commit is contained in:
Thomas Schleicher 2024-10-23 23:57:25 +02:00
parent 759b7d4333
commit 11aa11903e
4 changed files with 92 additions and 47 deletions

View file

@ -0,0 +1,29 @@
#ifndef TCP_CONNECTION_HPP
#define TCP_CONNECTION_HPP
#include <boost/system/detail/error_code.hpp>
#include <memory>
#include <boost/asio.hpp>
using namespace boost;
using namespace std;
class tcp_connection : public std::enable_shared_from_this<tcp_connection> {
public:
typedef std::shared_ptr<tcp_connection> pointer;
static pointer create(asio::io_context& io_context);
asio::ip::tcp::socket& socket();
void handle();
private:
asio::ip::tcp::socket socket_;
asio::streambuf buffer_;
explicit tcp_connection(asio::io_context& io_context);
void handle_read(const system::error_code& error, size_t bytes_transferred);
void handle_write(const system::error_code& error, size_t bytes_transferred);
};
#endif