X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/cad325f5f0516da6b1d1d44c509ce194e2f08f46..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/stglibs/srvconf.lib/netunit.h?ds=sidebyside diff --git a/stglibs/srvconf.lib/netunit.h b/stglibs/srvconf.lib/netunit.h index 6b6cef53..ca13bbc8 100644 --- a/stglibs/srvconf.lib/netunit.h +++ b/stglibs/srvconf.lib/netunit.h @@ -18,12 +18,6 @@ * Author : Boris Mikhailenko */ - /* - $Revision: 1.6 $ - $Date: 2010/02/11 12:32:53 $ - $Author: faust $ - */ - #ifndef NetUnitH #define NetUnitH @@ -31,44 +25,51 @@ #include -typedef bool (* RxCallback_t)(void *, const std::string &, bool); +namespace STG +{ -//--------------------------------------------------------------------------- class NETTRANSACT { public: + typedef bool (* CALLBACK)(const std::string &, bool, void *); + + NETTRANSACT(const std::string & server, uint16_t port, + const std::string & login, const std::string & password); NETTRANSACT(const std::string & server, uint16_t port, + const std::string & localAddress, uint16_t localPort, const std::string & login, const std::string & password); - int Transact(const char * data); + ~NETTRANSACT(); + int Transact(const std::string & request, CALLBACK f, void * data); const std::string & GetError() const { return errorMsg; } - void SetRxCallback(void * data, RxCallback_t cb); - RxCallback_t GetRxCallback() const { return dataRxCallBack; } - - int Connect(); - int Disconnect(); + int Connect(); + void Disconnect(); private: - int TxHeader(); - int RxHeaderAnswer(); + int TxHeader(); + int RxHeaderAnswer(); - int TxLogin(); - int RxLoginAnswer(); + int TxLogin(); + int RxLoginAnswer(); - int TxLoginS(); - int RxLoginSAnswer(); + int TxLoginS(); + int RxLoginSAnswer(); - int TxData(const char * text); - int TxData(char * data); - int RxDataAnswer(); + int TxData(const std::string & text); + int RxDataAnswer(CALLBACK f, void * data); std::string server; uint16_t port; + std::string localAddress; + uint16_t localPort; std::string login; std::string password; - int outerSocket; - RxCallback_t RxCallBack; - void * dataRxCallBack; + int sock; std::string errorMsg; + + static bool TxCrypto(const void * block, size_t size, void * data); + static bool RxCrypto(const void * block, size_t size, void * data); }; -//--------------------------------------------------------------------------- + +} // namespace STG + #endif