dispatchers.cpp 898 B

12345678910111213141516171819202122232425262728
  1. #include "dispatchers.h"
  2. #include "logging.h"
  3. Dispatch::Dispatch(Session &s) : sess{s} {};
  4. Dispatch::~Dispatch() {};
  5. // virtuals
  6. /*
  7. void Dispatch::server_line(const std::string &line){};
  8. void Dispatch::server_prompt(const std::string &prompt){};
  9. void Dispatch::client_input(const std::string &input){};
  10. */
  11. void Dispatch::to_server(const std::string &send) { sess.to_server(send); }
  12. void Dispatch::to_client(const std::string &send) { sess.to_client(send); }
  13. const std::string &Dispatch::get_prompt(void) { return sess.get_prompt(); }
  14. CoreDispatch::CoreDispatch(Session &s) : Dispatch{s} {
  15. BUGZ_LOG(warning) << "CoreDispatch()";
  16. }
  17. void CoreDispatch::server_line(const std::string &line) {}
  18. void CoreDispatch::server_prompt(const std::string &prompt) {}
  19. void CoreDispatch::client_input(const std::string &input) {
  20. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  21. }