From 360b3e8ff55a101fe10f2ddd214852a491d28f52 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Sat, 18 Dec 2010 16:16:00 +0200 Subject: [PATCH] =?utf8?q?=D0=94=D0=BE=D0=B4=D0=B0=D0=BD=D0=BE=20=D1=96?= =?utf8?q?=D0=BD=D1=96=D1=86=D1=96=D0=B0=D0=BB=D1=96=D0=B7=D0=B0=D1=86?= =?utf8?q?=D1=96=D1=8E=20=D1=87=D0=BB=D0=B5=D0=BD=D1=96=D0=B2=20=D0=BA?= =?utf8?q?=D0=BB=D0=B0=D1=81=D1=83=20IA=5FUSER?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../authorization/inetaccess/inetaccess.h | 31 ++++++++----------- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/projects/stargazer/plugins/authorization/inetaccess/inetaccess.h b/projects/stargazer/plugins/authorization/inetaccess/inetaccess.h index 0e194db6..ad7db7a1 100644 --- a/projects/stargazer/plugins/authorization/inetaccess/inetaccess.h +++ b/projects/stargazer/plugins/authorization/inetaccess/inetaccess.h @@ -121,13 +121,12 @@ private: struct IA_USER { IA_USER() + : lastSendAlive(0), + rnd(random()), + port(0), + protoVer(0), + password("NO PASSWORD") { - //phase = 1; - //phaseTime = 0; - lastSendAlive = 0; - rnd = random(); - port = 0; - password = "NO PASSWORD"; // +++ Preparing CTX +++ unsigned char keyL[PASSWD_LEN]; // ðÁÒÏÌØ ÄÌÑ ÛÉÆÒÏ×ËÉ memset(keyL, 0, PASSWD_LEN); @@ -140,15 +139,15 @@ struct IA_USER }; IA_USER(const IA_USER & u) + : user(u.user), + phase(u.phase), + lastSendAlive(u.lastSendAlive), + rnd(u.rnd), + port(u.port), + messagesToSend(u.messagesToSend), + protoVer(u.protoVer), + password(u.password) { - user = u.user; - phase = u.phase; - //phaseTime = u.phaseTime; - lastSendAlive = u.lastSendAlive; - rnd = u.rnd; - password = u.password; - protoVer = u.protoVer; - port = u.port; #ifdef IA_DEBUG aliveSent = u.aliveSent; #endif @@ -280,10 +279,6 @@ private: int Timeouter(); - void InitEncrypt(BLOWFISH_CTX * ctx, const string & password); - void Decrypt(BLOWFISH_CTX * ctx, char * dst, const char * src, int len8); - void Encrypt(BLOWFISH_CTX * ctx, char * dst, const char * src, int len8); - int SendError(uint32_t ip, uint16_t port, int protoVer, const string & text); int Send(uint32_t ip, uint16_t port, const char * buffer, int len); int RealSendMessage6(const STG_MSG & msg, uint32_t ip, IA_USER & user); -- 2.43.2