1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #ifndef SESSION_H
- #define SESSION_H
- #include <boost/asio.hpp>
- #include <boost/asio/ip/basic_resolver.hpp>
- #include <string>
- class session : public std::enable_shared_from_this<session> {
- public:
- session(boost::asio::ip::tcp::socket socket,
- boost::asio::io_service &io_service, std::string hostname,
- std::string port);
- void start(void);
- ~session();
- void parse_auth(void);
- void on_connect(const boost::system::error_code error);
- void server_read(void);
- void on_resolve(const boost::system::error_code error,
- const boost::asio::ip::tcp::resolver::results_type results);
- void do_read(void);
- void to_client(std::string message);
- void to_server(std::string message);
- void on_shutdown(boost::system::error_code ec);
- void dispatch_line(std::string line);
- void process_lines(void);
- private:
- boost::asio::ip::tcp::socket socket_;
- boost::asio::io_service &io_service_;
- boost::asio::ip::tcp::resolver resolver_;
- boost::asio::ip::tcp::socket server_;
- boost::asio::high_resolution_timer timer_;
- // std::string read_buffer;
- std::string server_prompt;
- int server_sent;
- char read_buffer[257];
- char server_buffer[257];
- std::string rlogin_auth;
- std::string rlogin_name;
- std::string host;
- std::string port;
- bool connected = false;
- };
- /*
- maybe move the resolver part to the server, so I don't need io_service?
- I'm not sure what the socket connection part is going to need just yet,
- so I probably won't move that just yet. [NNY!]
- */
- class server {
- public:
- server(boost::asio::io_service &io_service,
- const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
- std::string port);
- private:
- void do_accept(void);
- boost::asio::io_service &io_service_;
- boost::asio::ip::tcp::acceptor acceptor_;
- /**
- * The host to connect to (from config)
- */
- std::string host_;
- /**
- * The port to connect to (from config)
- *
- */
- std::string port_;
- };
- #endif
|