X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/70f8adff2c970496bdc45717cad49ddec0405ae7..2fddb30eb177339eba6c1d64c3aea934704e5faf:/projects/rlm_stg/stg_client.h?ds=sidebyside diff --git a/projects/rlm_stg/stg_client.h b/projects/rlm_stg/stg_client.h index 6315a0a5..ee15774f 100644 --- a/projects/rlm_stg/stg_client.h +++ b/projects/rlm_stg/stg_client.h @@ -21,13 +21,13 @@ #ifndef STG_CLIENT_H #define STG_CLIENT_H -#include "stg/sgcp_proto.h" // Proto -#include "stg/sgcp_types.h" // TransportType #include "stg/os_int.h" +#include + #include #include -#include +#include typedef std::vector > PAIRS; @@ -44,9 +44,10 @@ struct ChannelConfig { ChannelConfig(std::string address); - STG::SGCP::TransportType transport; + std::string transport; std::string key; std::string address; + std::string portStr; uint16_t port; }; @@ -64,21 +65,21 @@ public: Error(const std::string& message) : runtime_error(message) {} }; - STG_CLIENT(const std::string& address); + typedef bool (*Callback)(void* /*data*/, const RESULT& /*result*/, bool /*status*/); + + STG_CLIENT(const std::string& address, Callback callback, void* data); ~STG_CLIENT(); + bool stop(); + static STG_CLIENT* get(); - static bool configure(const std::string& address); + static bool configure(const std::string& address, Callback callback, void* data); - RESULT request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs); + bool request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs); private: - ChannelConfig m_config; - STG::SGCP::Proto m_proto; - - void m_writeHeader(TYPE type, const std::string& userName, const std::string& password); - void m_writePairBlock(const PAIRS& source); - PAIRS m_readPairBlock(); + class Impl; + boost::scoped_ptr m_impl; }; #endif