ErrorCode.cs 709 B

123456789101112
  1. namespace ET
  2. {
  3. public static partial class ErrorCode
  4. {
  5. public const int ERR_KcpRouterConnectFail = ERR_WithException + PackageType.Router * 1000 + 1;
  6. public const int ERR_KcpRouterTimeout = ERR_WithException + PackageType.Router * 1000 + 2;
  7. public const int ERR_KcpRouterSame = ERR_WithException + PackageType.Router * 1000 + 3;
  8. public const int ERR_KcpRouterRouterSyncCountTooMuchTimes = ERR_WithException + PackageType.Router * 1000 + 4;
  9. public const int ERR_KcpRouterTooManyPackets = ERR_WithException + PackageType.Router * 1000 + 5;
  10. public const int ERR_KcpRouterSyncCountTooMuchTimes = ERR_WithException + PackageType.Router * 1000 + 6;
  11. }
  12. }