const TLitC< sizeof(L"RemConClient")/2 > | KRemConClientPanicCat | [static] |
Panic category used by Rem Con server to panic the client.
Panic codes used by Rem Con server to panic the client.
Enumerator | Value | Description |
---|---|---|
ERemConClientPanicIllegalIpc | 0 |
The client side has passed an illegal IPC value |
ERemConClientPanicAlreadyConnectionOriented | 1 |
The client is already connection-oriented. |
ERemConClientPanicNotConnectionOriented | 2 |
The client has called GoConnectionless, ConnectBearer or DisconnectBearer when the session is not connection-oriented. |
ERemConClientPanicBearerPluginIncorrectInterface | 3 |
The client called GoConnectionOriented with an unknown bearer UID. The given UID is not a known implementation of the bearer interface. |
ERemConClientPanicSendAlreadyOutstanding | 4 |
The client requested Send when there was already a Send outstanding on this session. |
ERemConClientPanicReceiveAlreadyOutstanding | 5 |
The client requested Receive when there was already a Receive outstanding on this session. |
ERemConClientPanicClientTypeNotSet | 6 |
The client has not had their type set. |
ERemConClientPanicClientTypeAlreadySet | 7 |
The client has attempted to set the type of the session when it has already been set. |
ERemConClientPanicBadType | 8 |
A client has used a bad or wrong session type in one of the following ways: (a) The client has tried to set the type of the session to a bad type (neither controller nor target). (b) The client (not of controller type) has called GoConnectionOriented, GoConnectionless, ConnectBearer, ConnectBearerCancel, DisconnectBearer or DisconnectBearerCancel. |
ERemConClientPanicTwoTargetSessionsInOneProcess | 9 |
A client tried to open a target session when there is already one in that client process. This is no longer an illegal condition and so the panic will never be raised. |
ERemConClientPanicBadDescriptor | 10 |
A badly-formed descriptor or other lump of data was sent from the client side. |
ERemConClientPanicConnectionsNotificationAlreadyOutstanding | 11 |
The client requested NotifyConnectionStatusChange when there was already a NotifyConnectionStatusChange outstanding on this session. |
ERemConClientPanicBearerControlOutstanding | 12 |
The client has committed one of a number of abuses of the ConnectBearer/DisconnectBearer interface. With respect to Send, Receive, ConnectBearer and DisconnectBearer messages, the following is a table of the legal states of a session (- = not outstanding, X = outstanding): Send Receive Connect Disconnect
|
ERemConClientPanicNoCommand | 13 |
The client has tried to send a response to a command which does not exist in the logs as having been delivered to that client. This is no longer an illegal condition and so the panic will never be raised. |
ERemConClientPanicRegisterInterestedAPIsInNonTargetSession | 14 |
RRemConTarget::RegisterInterestedAPIs(...) is called on an undefined session). This doesn't make any sense because the server only filters incoming commands for the target sessions. The client is paniced for misusing this API. This panic |
ERemConClientPanicCorruptSupportedOperations | 15 |
They client side has sent a corrupt set of supported operation ids. |
ERemConClientPanicRegisterInterestedOperationsInNonTargetSession | 16 |
RRemConTarget::RegisterInterestedOperations(...) is called on a non-target session (i.e. controller or undefined session). Detailed information about the controller operation support is not required by RemCon. The client is paniced for misusing this API. |
ERemConClientPanicClientFeaturesNotSet | 17 |
The client has not had their features set. |
ERemConClientPanicClientInterfaceAlreadyRegistered | 18 |
The client has tried to register the same interface in multiple sessions. |
ERemConClientPanicPlayerInfoAlreadySet | 19 |
The client has tried to register different player information in multiple sessions. For example, this can happen if an application directly using the RemCon client side interfaces also uses another component that itself uses the RemCon client interfaces, such as Qt Key Capture. |
ERemConClientPanicGetConnectionsFault | 20 |
This panic code indicates a programming error in RRemCon::GetConnections. |