/trunk/Demo.Mmose.Core/ServerEngine/World/Domain/PacketHandlers/DomainToZoneCluster/HandlerLoginDomain/Packets.cs

# · C# · 49 lines · 21 code · 5 blank · 23 comment · 0 complexity · 3c25e8d41d154b3d27a100321e18646d MD5 · raw file

  1. #region zh-CHS 2006 - 2008 DemoSoft 团队 | en 2006 - 2008 DemoSoft Team
  2. // NOTES
  3. // ---------------
  4. //
  5. // This file is a part of the MMOSE(Massively Multiplayer Online Server Engine) for .NET.
  6. //
  7. // 2006-2008 DemoSoft Team
  8. //
  9. //
  10. // First Version : by H.Q.Cai - mailto:caihuanqing@hotmail.com
  11. /***************************************************************************
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU Lesser General Public License as published
  15. * by the Free Software Foundation; either version 2.1 of the License, or
  16. * (at your option) any later version.
  17. *
  18. ***************************************************************************/
  19. #region zh-CHS 包含名字空间 | en Include namespace
  20. using Demo.Mmose.Core.Network;
  21. #endregion
  22. namespace Demo.Mmose.Core.World.DomainWorld
  23. {
  24. #region zh-CHS Domain_LoginDomain | en Domain_LoginDomain Class
  25. /// <summary>
  26. ///
  27. /// </summary>
  28. internal sealed class Domain_LoginDomainResult : Packet
  29. {
  30. /// <summary>
  31. ///
  32. /// </summary>
  33. public Domain_LoginDomainResult()
  34. : base( (long)DomainOpCodeFromZoneCluster.CMSG_LOGIN_DOMAIN_RESULT, 0/*6 + ?*/ )
  35. {
  36. WriterStream.Write( (ushort)7 /*6 + 1*/ ); // 字段大小
  37. WriterStream.Write( (ushort)base.PacketID ); // 字段编号
  38. WriterStream.Write( (ushort)0x00 ); // 字段保留
  39. WriterStream.Write( (byte)0x00 );
  40. }
  41. }
  42. #endregion
  43. }
  44. #endregion