#pragma once // Transport includes #include "transport/config.h" #include "transport/networkplugin.h" #include "transport/logging.h" // Yahoo2 #include #include #include #include #include // Swiften #include "Swiften/Swiften.h" #include "Swiften/TLS/OpenSSL/OpenSSLContextFactory.h" // for signal handler #include "unistd.h" #include "signal.h" #include "sys/wait.h" #include "sys/signal.h" // Boost #include using namespace boost::filesystem; using namespace boost::program_options; using namespace Transport; class YahooHandler; class YahooLocalAccount { public: YahooLocalAccount(const std::string &user, const std::string &legacyName, const std::string &password); virtual ~YahooLocalAccount(); void login(); void addHandler(YahooHandler *handler); void removeOldHandlers(); void removeConn(int conn_tag); std::string user; int id; std::map > conns; int conn_tag; std::map handlers; std::map > handlers_per_conn; std::map urls; int handler_tag; int status; std::string msg; std::string buffer; };