Remove unused protocol type

This commit is contained in:
Benau 2018-04-20 17:33:07 +08:00
parent afa647ac90
commit 75a63f6bae

View File

@ -44,11 +44,9 @@ enum ProtocolType
PROTOCOL_NONE = 0x00, //!< No protocol type assigned.
PROTOCOL_CONNECTION = 0x01, //!< Protocol that deals with client-server connection.
PROTOCOL_LOBBY_ROOM = 0x02, //!< Protocol that is used during the lobby room phase.
PROTOCOL_START_GAME = 0x03, //!< Protocol used when starting the game.
PROTOCOL_SYNCHRONIZATION = 0x04, //!< Protocol used to determine latency
PROTOCOL_GAME_EVENTS = 0x05, //!< Protocol to communicate the game events.
PROTOCOL_CONTROLLER_EVENTS = 0x06, //!< Protocol to transfer controller modifications
PROTOCOL_SILENT = 0x07, //!< Used for protocols that do not subscribe to any network event.
PROTOCOL_GAME_EVENTS = 0x03, //!< Protocol to communicate the game events.
PROTOCOL_CONTROLLER_EVENTS = 0x04, //!< Protocol to transfer controller modifications
PROTOCOL_SILENT = 0x05, //!< Used for protocols that do not subscribe to any network event.
PROTOCOL_MAX , //!< Maximum number of different protocol types
PROTOCOL_SYNCHRONOUS = 0x80, //!< Flag, indicates synchronous delivery
}; // ProtocolType