git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
GetPlugin should be extern "C".
[stg.git]
/
stglibs
/
srvconf.lib
/
netunit.h
diff --git
a/stglibs/srvconf.lib/netunit.h
b/stglibs/srvconf.lib/netunit.h
index f87fb3a864de758621200af456a21ec8e4dfbc0f..d1191435bef5ce319fc51664a04140ffe63e4325 100644
(file)
--- a/
stglibs/srvconf.lib/netunit.h
+++ b/
stglibs/srvconf.lib/netunit.h
@@
-32,6
+32,10
@@
public:
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 & 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);
+ ~NETTRANSACT();
int Transact(const std::string & request, CALLBACK f, void * data);
const std::string & GetError() const { return errorMsg; }
int Transact(const std::string & request, CALLBACK f, void * data);
const std::string & GetError() const { return errorMsg; }
@@
-52,10
+56,15
@@
private:
std::string server;
uint16_t port;
std::string server;
uint16_t port;
+ std::string localAddress;
+ uint16_t localPort;
std::string login;
std::string password;
std::string login;
std::string password;
- int
outerSocket
;
+ int
sock
;
std::string errorMsg;
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);
};
#endif
};
#endif