Preparing network protocol for rejoin.

This commit is contained in:
lotodore
2011-07-16 14:52:45 +00:00
parent 711091bcd9
commit e109c0037d
303 changed files with 8477 additions and 7528 deletions
+36 -35
View File
@@ -23,45 +23,46 @@
extern "C" {
#endif
/* Dependencies */
typedef enum chatRequestType_PR {
chatRequestType_PR_NOTHING, /* No components present */
chatRequestType_PR_chatRequestTypeLobby,
chatRequestType_PR_chatRequestTypeGame,
chatRequestType_PR_chatRequestTypePrivate,
/* Extensions may appear below */
} chatRequestType_PR;
/* Dependencies */
typedef enum chatRequestType_PR {
chatRequestType_PR_NOTHING, /* No components present */
chatRequestType_PR_chatRequestTypeLobby,
chatRequestType_PR_chatRequestTypeGame,
chatRequestType_PR_chatRequestTypePrivate,
/* Extensions may appear below */
}
chatRequestType_PR;
/* ChatRequestMessage */
typedef struct ChatRequestMessage {
struct chatRequestType {
chatRequestType_PR present;
union ChatRequestMessage__chatRequestType_u {
ChatRequestTypeLobby_t chatRequestTypeLobby;
ChatRequestTypeGame_t chatRequestTypeGame;
ChatRequestTypePrivate_t chatRequestTypePrivate;
/*
* This type is extensible,
* possible extensions are below.
*/
} choice;
/* Context for parsing across buffer boundaries */
asn_struct_ctx_t _asn_ctx;
} chatRequestType;
UTF8String_t chatText;
/*
* This type is extensible,
* possible extensions are below.
*/
/* ChatRequestMessage */
typedef struct ChatRequestMessage {
struct chatRequestType {
chatRequestType_PR present;
union ChatRequestMessage__chatRequestType_u {
ChatRequestTypeLobby_t chatRequestTypeLobby;
ChatRequestTypeGame_t chatRequestTypeGame;
ChatRequestTypePrivate_t chatRequestTypePrivate;
/*
* This type is extensible,
* possible extensions are below.
*/
} choice;
/* Context for parsing across buffer boundaries */
asn_struct_ctx_t _asn_ctx;
} chatRequestType;
UTF8String_t chatText;
/*
* This type is extensible,
* possible extensions are below.
*/
/* Context for parsing across buffer boundaries */
asn_struct_ctx_t _asn_ctx;
} ChatRequestMessage_t;
} ChatRequestMessage_t;
/* Implementation */
extern asn_TYPE_descriptor_t asn_DEF_ChatRequestMessage;
/* Implementation */
extern asn_TYPE_descriptor_t asn_DEF_ChatRequestMessage;
#ifdef __cplusplus
}