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.
29 lines
1.2 KiB
29 lines
1.2 KiB
-- ------------------------------------------------------------------------------ --
|
|
-- TradeSkillMaster --
|
|
-- https://tradeskillmaster.com --
|
|
-- All Rights Reserved - Detailed license information included with addon. --
|
|
-- ------------------------------------------------------------------------------ --
|
|
|
|
local TSM = select(2, ...) ---@type TSM
|
|
local Constants = TSM.Init("Service.SyncClasses.Constants") ---@class Service.SyncClasses.Constants
|
|
Constants.VERSION = 17
|
|
Constants.DATA_TYPES = {
|
|
-- New connection types (40-49)
|
|
WHOAMI_ACCOUNT = strchar(40),
|
|
WHOAMI_ACK = strchar(41),
|
|
-- Connection status types (50-69)
|
|
CONNECTION_REQUEST = strchar(50),
|
|
CONNECTION_REQUEST_ACK = strchar(51),
|
|
DISCONNECT = strchar(52),
|
|
HEARTBEAT = strchar(53),
|
|
-- Data mirroring types (70-99)
|
|
CHARACTER_HASHES_BROADCAST = strchar(70),
|
|
CHARACTER_SETTING_HASHES_REQUEST = strchar(71),
|
|
CHARACTER_SETTING_HASHES_RESPONSE = strchar(72),
|
|
CHARACTER_SETTING_DATA_REQUEST = strchar(73),
|
|
CHARACTER_SETTING_DATA_RESPONSE = strchar(74),
|
|
-- RPC types (100-109)
|
|
RPC_CALL = strchar(100),
|
|
RPC_RETURN = strchar(101),
|
|
RPC_PREAMBLE = strchar(102),
|
|
}
|
|
|