session.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #ifndef SESSION_H
  2. #define SESSION_H
  3. #include <boost/asio.hpp>
  4. #include <boost/asio/ip/basic_resolver.hpp>
  5. #include <string>
  6. class session : public std::enable_shared_from_this<session> {
  7. public:
  8. session(boost::asio::ip::tcp::socket socket,
  9. boost::asio::io_service &io_service, std::string hostname,
  10. std::string port);
  11. void start(void);
  12. ~session();
  13. void parse_auth(void);
  14. void on_connect(const boost::system::error_code error);
  15. void server_read(void);
  16. void on_resolve(const boost::system::error_code error,
  17. const boost::asio::ip::tcp::resolver::results_type results);
  18. void do_read(void);
  19. void to_client(std::string message);
  20. void to_server(std::string message);
  21. void on_shutdown(boost::system::error_code ec);
  22. void dispatch_line(std::string line);
  23. void process_lines(void);
  24. private:
  25. boost::asio::ip::tcp::socket socket_;
  26. boost::asio::io_service &io_service_;
  27. boost::asio::ip::tcp::resolver resolver_;
  28. boost::asio::ip::tcp::socket server_;
  29. boost::asio::high_resolution_timer timer_;
  30. // std::string read_buffer;
  31. std::string server_prompt;
  32. int server_sent;
  33. char read_buffer[257];
  34. char server_buffer[257];
  35. std::string rlogin_auth;
  36. std::string rlogin_name;
  37. std::string host;
  38. std::string port;
  39. bool connected = false;
  40. };
  41. /*
  42. maybe move the resolver part to the server, so I don't need io_service?
  43. I'm not sure what the socket connection part is going to need just yet,
  44. so I probably won't move that just yet. [NNY!]
  45. */
  46. class server {
  47. public:
  48. server(boost::asio::io_service &io_service,
  49. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  50. std::string port);
  51. private:
  52. void do_accept(void);
  53. boost::asio::io_service &io_service_;
  54. boost::asio::ip::tcp::acceptor acceptor_;
  55. /**
  56. * The host to connect to (from config)
  57. */
  58. std::string host_;
  59. /**
  60. * The port to connect to (from config)
  61. *
  62. */
  63. std::string port_;
  64. };
  65. #endif