diff --git a/src/proto/enums/Packet.ts b/src/proto/enums/Packet.ts deleted file mode 100644 index e9fa08f..0000000 --- a/src/proto/enums/Packet.ts +++ /dev/null @@ -1,121 +0,0 @@ -export enum Packet { - ConnectedPing = 0x00, - UnconnectedPing = 0x01, - UnconnectedPingOpenConnections = 0x02, - ConnectedPong = 0x03, - DetectLostConnections = 0x04, - OpenConnectionRequestOne = 0x05, - OpenConnectionReplyOne = 0x06, - OpenConnectionRequestTwo = 0x07, - OpenConnectionReplyTwo = 0x08, - ConnectionRequest = 0x09, - RemoteSystemRequiresPublicKey = 0x0a, - OurSystemRequiresSecurity = 0x0b, - PublicKeyMismatch = 0x0c, - OutOfBandInternal = 0x0d, - SndReceiptAcked = 0x0e, - SndReceiptLoss = 0x0f, - ConnectionRequestAccepted = 0x10, - ConnectionAttemptFailed = 0x11, - AlreadyConnected = 0x12, - NewIncomingConnection = 0x13, - NoFreeIncomingConnections = 0x14, - DisconnectionNotification = 0x15, - ConnectionLost = 0x16, - ConnectionBanned = 0x17, - InvalidPassword = 0x18, - IncompatibleProtocolVersion = 0x19, - IpRecentlyConnected = 0x1a, - Timestamp = 0x1b, - UnconnectedPong = 0x1c, - AdvertiseSystem = 0x1d, - DownloadProgress = 0x1e, - RemoteDisconnectionNotification = 0x1f, - RemoteConnectionLost = 0x20, - RemoteNewIncomingConnection = 0x21, - FileListTransferHeader = 0x22, - FileListTransferFile = 0x23, - FileListReferenceTransferFile = 0x24, - DdtDownloadRequest = 0x25, - TransportString = 0x26, - ReplicaManagerConstruction = 0x27, - ReplicaManagerScope = 0x28, - ReplicaManagerSerialize = 0x29, - ReplicaManagerDownloadStarted = 0x2a, - ReplicaManagerDownloadComplete = 0x2b, - ConnectionGraphRequest = 0x2c, - ConnectionGraphReply = 0x2d, - ConnectionGraphUpdate = 0x2e, - ConnectionGraphNewConnection = 0x2f, - ConnectionGraphConnectionLost = 0x30, - ConnectionGraphDisconnectionNotification = 0x31, - RouteAndMulticast = 0x32, - RakVoice = 0x33, - AutopatcherGetChangelistSinceDate = 0x34, - AutopatcherCreationList = 0x35, - AutopatcherDeletionList = 0x36, - AutopatcherGetPatch = 0x37, - AutopatcherPatchList = 0x38, - AutopatcherRepositoryFatalError = 0x39, - AutopatcherFinishedInternal = 0x3a, - AutopatcherFinished = 0x3b, - AutopatcherRestartApplication = 0x3c, - NatPunchthroughRequest = 0x3d, - NatTarget = 0x3e, - NatTargetNotConnected = 0x3f, - NatTargetConnectionLost = 0x40, - NatConnectAtTime = 0x41, - NatSendOfflineMessageAtTime = 0x42, - NatClientReady = 0x43, - NatPunchthroughFailed = 0x44, - NatPunchthroughSucceeded = 0x45, - FlexibleChat = 0x46, - ReadyEventSet = 0x47, - ReadyEventUnset = 0x48, - ReadyEventAllSet = 0x49, - ReadyEventQuery = 0x4a, - LobbyGeneral = 0x4b, - AutoRpcCall = 0x4c, - AutoRpcRemoteIndex = 0x4d, - AutoRpcUnknownRemoteIndex = 0x4e, - RpcRemoteError = 0x4f, - FileListTransferFile2 = 0x50, - FileListReferenceTransferFile2 = 0x51, - ChatCommand = 0x52, - ChatMessage = 0x53, - BridgeDataTransfer = 0x54, - ViveSync = 0x55, - ViveSyncUnreliable = 0x56, - ViveSyncPong = 0x57, - ConnectionRequestAcceptedEx = 0x58, - ConnectionAttemptFailedEx = 0x59, - NewIncomingConnectionEx = 0x5a, - TwoWayAuthenticationNegotiation = 0x5b, - TwoWayAuthenticationIncomingChallengeSuccess = 0x5c, - TwoWayAuthenticationOutgoingChallengeSuccess = 0x5d, - TwoWayAuthenticationIncomingChallengeFailure = 0x5e, - TwoWayAuthenticationOutgoingChallengeFailure = 0x5f, - TwoWayAuthenticationOutgoingChallengeTimeout = 0x60, - CloudPostRequest = 0x61, - CloudReleaseRequest = 0x62, - CloudGetRequest = 0x63, - CloudGetResponse = 0x64, - CloudUnsubscribeRequest = 0x65, - CloudServerToServerCommand = 0x66, - CloudSubscriptionNotification = 0x67, - LibVoice = 0x7a, - RelayPlugin = 0x7b, - NatRequestBoundAddresses = 0x7c, - NatRespondBoundAddresses = 0x7d, - Fcm2UpdateUserContext = 0x7e, - Reserved3 = 0x7f, - FrameSet = 0x80, // Set this to FrameSet cause only this will be used - Reserved5 = 0x81, - Reserved6 = 0x82, - Reserved7 = 0x83, - Reserved8 = 0x84, - Reserved9 = 0x85, - UserPacketEnum = 0x86, - Nack = 0xa0, - Ack = 0xc0, -}