X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/6ce56fd8481f4fc5ae2cf9383e6b6ecbff42b41d..46b0747592074017ff0ea4b33d4a7194235886e5:/projects/sgauthstress/user.cpp diff --git a/projects/sgauthstress/user.cpp b/projects/sgauthstress/user.cpp deleted file mode 100644 index bea1c6b7..00000000 --- a/projects/sgauthstress/user.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "user.h" - -USER::USER(const std::string & l, - const std::string & pwd) - : login(l), - phase(1), - rnd(0), - sock(0) -{ -char key[IA_PASSWD_LEN]; -memset(key, 0, IA_PASSWD_LEN); -strncpy(key, password.c_str(), IA_PASSWD_LEN); -Blowfish_Init(&ctx, key, IA_PASSWD_LEN); -} - -USER::~USER() -{ -} - -void USER::Connect() -{ -} - -void USER::Disconnect() -{ -}