You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
725 B

  1. ConfigCmd =
  2. {
  3. --[[/**
  4. * 客户端请求获取配置信息
  5. * <pre>
  6. * 请求: {@code ServerConfigRequest}
  7. * </pre>
  8. */--]]
  9. GAME_COMMAND_GET_SERVER_CONF = 0x0301,
  10. --[[/**
  11. * server返回大厅的配置信息
  12. * <pre>
  13. * 推送: {@code ServerHallConfigResponse}
  14. * </pre>
  15. */--]]
  16. GAME_COMMAND_SEND_SERVER_CONF = 0x0302,
  17. --[[/**
  18. * server返回子游戏的配置信息
  19. * <pre>
  20. * 推送: {@code ServerGamesConfigResponse}
  21. * </pre>
  22. */--]]
  23. GAME_COMMAND_SEND_GAME_CONF = 0x0303,
  24. --[[/**
  25. * 客户端和PHP之间交互使用的TCP通道
  26. * <pre>
  27. * 请求: {@code StringPacket}
  28. * </pre>
  29. */--]]
  30. GAME_COMMAND_PHP = 0x0401,
  31. }
  32. return ConfigCmd;