Show
Ignore:
Timestamp:
06/02/08 00:14:42 (6 months ago)
Author:
emostar
Message:

Use MD5 method for logins.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/include/licq_packets.h

    r6181 r6227  
    198198}; 
    199199 
     200class CPU_ConnectStart : public CSrvPacketTcp 
     201{ 
     202public: 
     203  CPU_ConnectStart(); 
     204}; 
     205 
    200206//-----Logon-------------------------------------------------------------------- 
    201207class CPU_Logon : public CSrvPacketTcp 
     
    242248                    unsigned short nService = 0); 
    243249  virtual ~CPU_GenericFamily(); 
     250}; 
     251 
     252class CPU_RequestLogonSalt : public CPU_CommonFamily 
     253{ 
     254public: 
     255  CPU_RequestLogonSalt(const std::string &); 
     256}; 
     257 
     258class CPU_NewLogon : public CPU_CommonFamily 
     259{ 
     260public: 
     261  CPU_NewLogon(const char *_szPassword, const char *_szUin, const char *_szMD5Salt); 
    244262}; 
    245263