Cipher.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2003/06/18
  3. file base: Cipher
  4. file ext: h
  5. author: liupeng
  6. purpose:
  7. *********************************************************************/
  8. #ifndef __INCLUDE_CIPHER_H__
  9. #define __INCLUDE_CIPHER_H__
  10. /*
  11.  * ProtocolType same as s2c_accountbegin in the protocol.h file
  12.  */
  13. #define CIPHER_PROTOCOL_TYPE 0x20
  14. #pragma pack( 1 )
  15. typedef struct 
  16. {
  17. BYTE ProtocolType;
  18.     BYTE            Mode;
  19.     BYTE            Reserve1[6];
  20.     unsigned        ServerKey;
  21.     unsigned        ClientKey;
  22.     BYTE            Reserve2[16];
  23. } ACCOUNT_BEGIN;
  24. #pragma pack()
  25. #endif // __INCLUDE_CIPHER_H__