Changeset 6227 for trunk/licq/include/licq_packets.h
- Timestamp:
- 06/02/08 00:14:42 (6 months ago)
- Files:
-
- 1 modified
-
trunk/licq/include/licq_packets.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/include/licq_packets.h
r6181 r6227 198 198 }; 199 199 200 class CPU_ConnectStart : public CSrvPacketTcp 201 { 202 public: 203 CPU_ConnectStart(); 204 }; 205 200 206 //-----Logon-------------------------------------------------------------------- 201 207 class CPU_Logon : public CSrvPacketTcp … … 242 248 unsigned short nService = 0); 243 249 virtual ~CPU_GenericFamily(); 250 }; 251 252 class CPU_RequestLogonSalt : public CPU_CommonFamily 253 { 254 public: 255 CPU_RequestLogonSalt(const std::string &); 256 }; 257 258 class CPU_NewLogon : public CPU_CommonFamily 259 { 260 public: 261 CPU_NewLogon(const char *_szPassword, const char *_szUin, const char *_szMD5Salt); 244 262 }; 245 263
