]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/include/stg/netunit.h
[NY Flight] Improvements in parser dispatching.
[stg.git] / stglibs / srvconf.lib / include / stg / netunit.h
index 332670d6ef8121ba6a6ec5276bcf245f6835ec8f..9e120855ea5e788cd89f9f896d3dc02cdaaedc1f 100644 (file)
@@ -29,7 +29,6 @@
 
 #include "stg/blowfish.h"
 
-#include <list>
 #include <string>
 
 #include <sys/types.h>
@@ -49,7 +48,7 @@
 
 #define MAX_ERR_STR_LEN (64)
 
-typedef int(*RxCallback_t)(void *, std::list<std::string> *);
+typedef bool (* RxCallback_t)(void *, const std::string &, bool);
 
 enum status
 {
@@ -87,7 +86,6 @@ public:
 
     int     Connect();
     int     Disconnect();
-    void    Reset();
 private:
     int     TxHeader();
     int     RxHeaderAnswer();
@@ -102,16 +100,11 @@ private:
     int     TxData(char * data);
     int     RxDataAnswer();
 
-    void Encrypt(char * d, const char * s, BLOWFISH_CTX *ctx);
-    void EnDecryptInit(const char * passwd, int passwdLen, BLOWFISH_CTX *ctx);
-    void Decrypt(char * d, const char * s, BLOWFISH_CTX *ctx);
-
     std::string server;
     uint16_t  port;
     std::string login;
     std::string password;
     int     outerSocket;
-    std::list<std::string>   answerList;
     RxCallback_t RxCallBack;
     void *  dataRxCallBack;
     std::string errorMsg;