Adding support for custom delay between hands in protocol.
This commit is contained in:
@@ -295,6 +295,7 @@ NetGameInfo ::= SEQUENCE {
|
|||||||
keepLastBlind (3)
|
keepLastBlind (3)
|
||||||
},
|
},
|
||||||
proposedGuiSpeed INTEGER(1..11),
|
proposedGuiSpeed INTEGER(1..11),
|
||||||
|
delayBetweenHands INTEGER(5..20), -- These are seconds
|
||||||
playerActionTimeout INTEGER(5..60), -- These are seconds
|
playerActionTimeout INTEGER(5..60), -- These are seconds
|
||||||
firstSmallBlind INTEGER(1..20000),
|
firstSmallBlind INTEGER(1..20000),
|
||||||
endRaiseSmallBlindValue INTEGER(0..20000),
|
endRaiseSmallBlindValue INTEGER(0..20000),
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ struct GameData
|
|||||||
AfterManualBlindsMode afterManualBlindsMode;
|
AfterManualBlindsMode afterManualBlindsMode;
|
||||||
int afterMBAlwaysRaiseValue;
|
int afterMBAlwaysRaiseValue;
|
||||||
int guiSpeed;
|
int guiSpeed;
|
||||||
|
int delayBetweenHandsSec;
|
||||||
int playerActionTimeoutSec;
|
int playerActionTimeoutSec;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -177,6 +177,7 @@ void gameLobbyDialogImpl::createGame()
|
|||||||
}
|
}
|
||||||
|
|
||||||
gameData.guiSpeed = myConfig->readConfigInt("GameSpeed");
|
gameData.guiSpeed = myConfig->readConfigInt("GameSpeed");
|
||||||
|
gameData.delayBetweenHandsSec = myCreateInternetGameDialog->spinBox_netDelayBetweenHands->value();
|
||||||
gameData.playerActionTimeoutSec = myCreateInternetGameDialog->spinBox_netTimeOutPlayerAction->value();
|
gameData.playerActionTimeoutSec = myCreateInternetGameDialog->spinBox_netTimeOutPlayerAction->value();
|
||||||
|
|
||||||
QString gameString(tr("%1's game"));
|
QString gameString(tr("%1's game"));
|
||||||
|
|||||||
@@ -391,6 +391,7 @@ void startWindowImpl::callCreateNetworkGameDialog() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
gameData.guiSpeed = myConfig->readConfigInt("GameSpeed");
|
gameData.guiSpeed = myConfig->readConfigInt("GameSpeed");
|
||||||
|
gameData.delayBetweenHandsSec = myCreateNetworkGameDialog->spinBox_netDelayBetweenHands->value();
|
||||||
gameData.playerActionTimeoutSec = myCreateNetworkGameDialog->spinBox_netTimeOutPlayerAction->value();
|
gameData.playerActionTimeoutSec = myCreateNetworkGameDialog->spinBox_netTimeOutPlayerAction->value();
|
||||||
|
|
||||||
myGameLobbyDialog->setSession(getSession());
|
myGameLobbyDialog->setSession(getSession());
|
||||||
|
|||||||
@@ -674,6 +674,10 @@ ClientStateStartSession::Enter(boost::shared_ptr<ClientThread> client)
|
|||||||
InitMessage_t *netInit = &init->GetMsg()->choice.initMessage;
|
InitMessage_t *netInit = &init->GetMsg()->choice.initMessage;
|
||||||
netInit->requestedVersion.major = NET_VERSION_MAJOR;
|
netInit->requestedVersion.major = NET_VERSION_MAJOR;
|
||||||
netInit->requestedVersion.minor = NET_VERSION_MINOR;
|
netInit->requestedVersion.minor = NET_VERSION_MINOR;
|
||||||
|
|
||||||
|
// CASE 1: Authenticated login (username, challenge/response for password).
|
||||||
|
if (!context.GetPassword().empty())
|
||||||
|
{
|
||||||
netInit->login.present = login_PR_authenticatedLogin;
|
netInit->login.present = login_PR_authenticatedLogin;
|
||||||
AuthenticatedLogin_t *authLogin = &netInit->login.choice.authenticatedLogin;
|
AuthenticatedLogin_t *authLogin = &netInit->login.choice.authenticatedLogin;
|
||||||
// Send authentication user data for challenge/response in init.
|
// Send authentication user data for challenge/response in init.
|
||||||
@@ -699,6 +703,16 @@ ClientStateStartSession::Enter(boost::shared_ptr<ClientThread> client)
|
|||||||
MD5_DATA_SIZE);
|
MD5_DATA_SIZE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
// CASE 2: Guest login (no password, but restrictions may apply).
|
||||||
|
else
|
||||||
|
{
|
||||||
|
netInit->login.present = login_PR_guestLogin;
|
||||||
|
GuestLogin_t *guestLogin = &netInit->login.choice.guestLogin;
|
||||||
|
OCTET_STRING_fromBuf(&guestLogin->nickName,
|
||||||
|
context.GetPlayerName().c_str(),
|
||||||
|
context.GetPlayerName().length());
|
||||||
|
}
|
||||||
client->GetSender().Send(context.GetSessionData(), init);
|
client->GetSender().Send(context.GetSessionData(), init);
|
||||||
|
|
||||||
client->SetState(ClientStateWaitAuthChallenge::Instance());
|
client->SetState(ClientStateWaitAuthChallenge::Instance());
|
||||||
@@ -1046,7 +1060,7 @@ ClientStateWaitAuthChallenge::InternalHandlePacket(boost::shared_ptr<ClientThrea
|
|||||||
if (netAuth->present == AuthMessage_PR_authServerChallenge)
|
if (netAuth->present == AuthMessage_PR_authServerChallenge)
|
||||||
{
|
{
|
||||||
AuthServerChallenge_t *netChallenge = &netAuth->choice.authServerChallenge;
|
AuthServerChallenge_t *netChallenge = &netAuth->choice.authServerChallenge;
|
||||||
string challengeStr((const char *)netChallenge->serverChallenge.buf, netChallenge->serverChallenge.size);
|
string challengeStr = STL_STRING_FROM_OCTET_STRING(netChallenge->serverChallenge);
|
||||||
boost::shared_ptr<SessionData> tmpSession = client->GetContext().GetSessionData();
|
boost::shared_ptr<SessionData> tmpSession = client->GetContext().GetSessionData();
|
||||||
if (!tmpSession->AuthStep(2, challengeStr.c_str()))
|
if (!tmpSession->AuthStep(2, challengeStr.c_str()))
|
||||||
throw ClientException(__FILE__, __LINE__, ERR_NET_INVALID_PASSWORD, 0);
|
throw ClientException(__FILE__, __LINE__, ERR_NET_INVALID_PASSWORD, 0);
|
||||||
@@ -1107,7 +1121,7 @@ ClientStateWaitAuthVerify::InternalHandlePacket(boost::shared_ptr<ClientThread>
|
|||||||
if (netAuth->present == AuthMessage_PR_authServerVerification)
|
if (netAuth->present == AuthMessage_PR_authServerVerification)
|
||||||
{
|
{
|
||||||
AuthServerVerification_t *netVerification = &netAuth->choice.authServerVerification;
|
AuthServerVerification_t *netVerification = &netAuth->choice.authServerVerification;
|
||||||
string verificationStr((const char *)netVerification->serverVerification.buf, netVerification->serverVerification.size);
|
string verificationStr = STL_STRING_FROM_OCTET_STRING(netVerification->serverVerification);
|
||||||
boost::shared_ptr<SessionData> tmpSession = client->GetContext().GetSessionData();
|
boost::shared_ptr<SessionData> tmpSession = client->GetContext().GetSessionData();
|
||||||
if (!tmpSession->AuthStep(3, verificationStr.c_str()))
|
if (!tmpSession->AuthStep(3, verificationStr.c_str()))
|
||||||
throw ClientException(__FILE__, __LINE__, ERR_NET_INVALID_PASSWORD, 0);
|
throw ClientException(__FILE__, __LINE__, ERR_NET_INVALID_PASSWORD, 0);
|
||||||
|
|||||||
@@ -123,6 +123,7 @@ NetPacket::SetGameData(const GameData &inData, NetGameInfo_t *outData)
|
|||||||
}
|
}
|
||||||
outData->endRaiseMode = inData.afterManualBlindsMode;
|
outData->endRaiseMode = inData.afterManualBlindsMode;
|
||||||
outData->proposedGuiSpeed = inData.guiSpeed;
|
outData->proposedGuiSpeed = inData.guiSpeed;
|
||||||
|
outData->delayBetweenHands = inData.delayBetweenHandsSec;
|
||||||
outData->playerActionTimeout = inData.playerActionTimeoutSec;
|
outData->playerActionTimeout = inData.playerActionTimeoutSec;
|
||||||
outData->endRaiseSmallBlindValue = inData.afterMBAlwaysRaiseValue;
|
outData->endRaiseSmallBlindValue = inData.afterMBAlwaysRaiseValue;
|
||||||
outData->firstSmallBlind = inData.firstSmallBlind;
|
outData->firstSmallBlind = inData.firstSmallBlind;
|
||||||
@@ -159,6 +160,7 @@ NetPacket::GetGameData(const NetGameInfo_t *inData, GameData &outData)
|
|||||||
outData.raiseMode = numManualBlinds > 0 ? MANUAL_BLINDS_ORDER : DOUBLE_BLINDS;
|
outData.raiseMode = numManualBlinds > 0 ? MANUAL_BLINDS_ORDER : DOUBLE_BLINDS;
|
||||||
outData.afterManualBlindsMode = static_cast<AfterManualBlindsMode>(inData->endRaiseMode);
|
outData.afterManualBlindsMode = static_cast<AfterManualBlindsMode>(inData->endRaiseMode);
|
||||||
outData.guiSpeed = inData->proposedGuiSpeed;
|
outData.guiSpeed = inData->proposedGuiSpeed;
|
||||||
|
outData.delayBetweenHandsSec = inData->delayBetweenHands;
|
||||||
outData.playerActionTimeoutSec = inData->playerActionTimeout;
|
outData.playerActionTimeoutSec = inData->playerActionTimeout;
|
||||||
outData.firstSmallBlind = inData->firstSmallBlind;
|
outData.firstSmallBlind = inData->firstSmallBlind;
|
||||||
outData.afterMBAlwaysRaiseValue = inData->endRaiseSmallBlindValue;
|
outData.afterMBAlwaysRaiseValue = inData->endRaiseSmallBlindValue;
|
||||||
|
|||||||
@@ -40,7 +40,6 @@ using namespace std;
|
|||||||
//#define SERVER_TEST
|
//#define SERVER_TEST
|
||||||
|
|
||||||
#ifdef SERVER_TEST
|
#ifdef SERVER_TEST
|
||||||
#define SERVER_DELAY_NEXT_HAND_SEC 0
|
|
||||||
#define SERVER_DELAY_NEXT_GAME_SEC 0
|
#define SERVER_DELAY_NEXT_GAME_SEC 0
|
||||||
#define SERVER_DEAL_FLOP_CARDS_DELAY_SEC 0
|
#define SERVER_DEAL_FLOP_CARDS_DELAY_SEC 0
|
||||||
#define SERVER_DEAL_TURN_CARD_DELAY_SEC 0
|
#define SERVER_DEAL_TURN_CARD_DELAY_SEC 0
|
||||||
@@ -50,7 +49,6 @@ using namespace std;
|
|||||||
#define SERVER_PLAYER_TIMEOUT_ADD_DELAY_SEC 0
|
#define SERVER_PLAYER_TIMEOUT_ADD_DELAY_SEC 0
|
||||||
#define SERVER_COMPUTER_ACTION_DELAY_SEC 0
|
#define SERVER_COMPUTER_ACTION_DELAY_SEC 0
|
||||||
#else
|
#else
|
||||||
#define SERVER_DELAY_NEXT_HAND_SEC 10
|
|
||||||
#define SERVER_DELAY_NEXT_GAME_SEC 10
|
#define SERVER_DELAY_NEXT_GAME_SEC 10
|
||||||
#define SERVER_DEAL_FLOP_CARDS_DELAY_SEC 5
|
#define SERVER_DEAL_FLOP_CARDS_DELAY_SEC 5
|
||||||
#define SERVER_DEAL_TURN_CARD_DELAY_SEC 2
|
#define SERVER_DEAL_TURN_CARD_DELAY_SEC 2
|
||||||
@@ -875,8 +873,13 @@ ServerGameStateHand::EngineLoop(boost::shared_ptr<ServerGame> server)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#ifdef POKERTH_TEST
|
||||||
server->GetStateTimer().expires_from_now(
|
server->GetStateTimer().expires_from_now(
|
||||||
boost::posix_time::seconds(SERVER_DELAY_NEXT_HAND_SEC));
|
boost::posix_time::seconds(0));
|
||||||
|
#else
|
||||||
|
server->GetStateTimer().expires_from_now(
|
||||||
|
boost::posix_time::seconds(server->GetGameData().delayBetweenHandsSec));
|
||||||
|
#endif
|
||||||
server->GetStateTimer().async_wait(
|
server->GetStateTimer().async_wait(
|
||||||
boost::bind(
|
boost::bind(
|
||||||
&ServerGameStateHand::TimerNextHand, this, boost::asio::placeholders::error, server));
|
&ServerGameStateHand::TimerNextHand, this, boost::asio::placeholders::error, server));
|
||||||
|
|||||||
@@ -99,16 +99,17 @@ public:
|
|||||||
|
|
||||||
virtual void ConnectSuccess()
|
virtual void ConnectSuccess()
|
||||||
{
|
{
|
||||||
|
LOG_MSG("Successfully connected to database.");
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void ConnectFailed(const string &error)
|
virtual void ConnectFailed(const string &error)
|
||||||
{
|
{
|
||||||
// TODO
|
LOG_ERROR("DB connect error: " << error);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void QueryError(const std::string &error)
|
virtual void QueryError(const std::string &error)
|
||||||
{
|
{
|
||||||
// TODO
|
LOG_ERROR("DB query error: " << error);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void PlayerLoginSuccess(unsigned requestId, DB_id dbPlayerId, const std::string &secret)
|
virtual void PlayerLoginSuccess(unsigned requestId, DB_id dbPlayerId, const std::string &secret)
|
||||||
@@ -128,6 +129,8 @@ public:
|
|||||||
|
|
||||||
virtual void CreateGameFailed(unsigned requestId)
|
virtual void CreateGameFailed(unsigned requestId)
|
||||||
{
|
{
|
||||||
|
// TODO maybe handle request id.
|
||||||
|
LOG_ERROR("DB create game failed for request " << requestId);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -919,7 +922,7 @@ ServerLobbyThread::HandleNetPacketInit(SessionWrapper session, const InitMessage
|
|||||||
if (initMessage.login.present == login_PR_guestLogin)
|
if (initMessage.login.present == login_PR_guestLogin)
|
||||||
{
|
{
|
||||||
const GuestLogin_t *guestLogin = &initMessage.login.choice.guestLogin;
|
const GuestLogin_t *guestLogin = &initMessage.login.choice.guestLogin;
|
||||||
playerName = string((const char *)guestLogin->nickName.buf, guestLogin->nickName.size);
|
playerName = STL_STRING_FROM_OCTET_STRING(guestLogin->nickName);
|
||||||
guestUser = true;
|
guestUser = true;
|
||||||
}
|
}
|
||||||
else if (initMessage.login.present == login_PR_authenticatedLogin)
|
else if (initMessage.login.present == login_PR_authenticatedLogin)
|
||||||
@@ -989,7 +992,7 @@ ServerLobbyThread::HandleNetPacketAuthClientResponse(SessionWrapper session, con
|
|||||||
{
|
{
|
||||||
if (session.sessionData && session.playerData && session.sessionData->AuthGetCurStepNum() == 1)
|
if (session.sessionData && session.playerData && session.sessionData->AuthGetCurStepNum() == 1)
|
||||||
{
|
{
|
||||||
string authData((const char *)clientResponse.clientResponse.buf, clientResponse.clientResponse.size);
|
string authData = STL_STRING_FROM_OCTET_STRING(clientResponse.clientResponse);
|
||||||
if (session.sessionData->AuthStep(2, authData))
|
if (session.sessionData->AuthStep(2, authData))
|
||||||
{
|
{
|
||||||
string outVerification(session.sessionData->AuthGetNextOutMsg());
|
string outVerification(session.sessionData->AuthGetNextOutMsg());
|
||||||
@@ -1191,7 +1194,7 @@ ServerLobbyThread::HandleNetPacketCreateGame(SessionWrapper session, const std::
|
|||||||
new ServerGame(
|
new ServerGame(
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
GetNextGameId(),
|
GetNextGameId(),
|
||||||
string((char *)newGame.gameInfo.gameName.buf, newGame.gameInfo.gameName.size),
|
STL_STRING_FROM_OCTET_STRING(newGame.gameInfo.gameName),
|
||||||
password,
|
password,
|
||||||
tmpData,
|
tmpData,
|
||||||
session.playerData->GetUniqueId(),
|
session.playerData->GetUniqueId(),
|
||||||
@@ -1360,7 +1363,9 @@ ServerLobbyThread::AuthenticatePlayer(SessionWrapper session)
|
|||||||
void
|
void
|
||||||
ServerLobbyThread::UserValid(unsigned playerId, DB_id dbPlayerId, const string &dbSecret)
|
ServerLobbyThread::UserValid(unsigned playerId, DB_id dbPlayerId, const string &dbSecret)
|
||||||
{
|
{
|
||||||
this->AuthChallenge(m_sessionManager.GetSessionByUniquePlayerId(playerId, true), dbSecret);
|
SessionWrapper tmpSession = m_sessionManager.GetSessionByUniquePlayerId(playerId, true);
|
||||||
|
tmpSession.playerData->SetDBId(dbPlayerId);
|
||||||
|
this->AuthChallenge(tmpSession, dbSecret);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|||||||
@@ -86,6 +86,7 @@
|
|||||||
#define ERR_NET_AVATAR_UPLOAD_BLOCKED 132
|
#define ERR_NET_AVATAR_UPLOAD_BLOCKED 132
|
||||||
#define ERR_NET_GSASL_INIT_FAILED 133
|
#define ERR_NET_GSASL_INIT_FAILED 133
|
||||||
#define ERR_NET_GSASL_NO_SCRAM 134
|
#define ERR_NET_GSASL_NO_SCRAM 134
|
||||||
|
#define ERR_NET_DB_CONNECT_FAILED 135
|
||||||
|
|
||||||
#define ERR_IRC_INTERNAL 151
|
#define ERR_IRC_INTERNAL 151
|
||||||
#define ERR_IRC_CONNECT_FAILED 152
|
#define ERR_IRC_CONNECT_FAILED 152
|
||||||
|
|||||||
+15
-1
@@ -22,7 +22,7 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
PlayerData::PlayerData(unsigned uniqueId, int number, PlayerType type, PlayerRights rights)
|
PlayerData::PlayerData(unsigned uniqueId, int number, PlayerType type, PlayerRights rights)
|
||||||
: m_uniqueId(uniqueId), m_number(number), m_type(type), m_rights(rights)
|
: m_uniqueId(uniqueId), m_dbId(DB_ID_INVALID), m_number(number), m_type(type), m_rights(rights)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,6 +167,20 @@ PlayerData::SetNumber(int number)
|
|||||||
m_number = number;
|
m_number = number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DB_id
|
||||||
|
PlayerData::GetDBId() const
|
||||||
|
{
|
||||||
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
|
return m_dbId;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
PlayerData::SetDBId(DB_id id)
|
||||||
|
{
|
||||||
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
|
m_dbId = id;
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
PlayerData::operator<(const PlayerData &other) const
|
PlayerData::operator<(const PlayerData &other) const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -96,6 +96,8 @@ public:
|
|||||||
unsigned GetUniqueId() const;
|
unsigned GetUniqueId() const;
|
||||||
int GetNumber() const;
|
int GetNumber() const;
|
||||||
void SetNumber(int number);
|
void SetNumber(int number);
|
||||||
|
DB_id GetDBId() const;
|
||||||
|
void SetDBId(DB_id id);
|
||||||
|
|
||||||
bool operator<(const PlayerData &other) const;
|
bool operator<(const PlayerData &other) const;
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -104,8 +104,8 @@ static ber_tlv_tag_t asn_DEF_AllInShowCardsMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_AllInShowCardsMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_AllInShowCardsMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* gameId at 429 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* gameId at 430 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, 0, 0 } /* playersAllIn at 431 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 1, 0, 0 } /* playersAllIn at 432 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_AllInShowCardsMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_AllInShowCardsMessage_specs_1 = {
|
||||||
sizeof(struct AllInShowCardsMessage),
|
sizeof(struct AllInShowCardsMessage),
|
||||||
|
|||||||
+3
-3
@@ -166,9 +166,9 @@ static ber_tlv_tag_t asn_DEF_AskKickDeniedMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_AskKickDeniedMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_AskKickDeniedMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 478 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 479 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* playerId at 479 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* playerId at 480 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 0 } /* kickDeniedReason at 481 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 0 } /* kickDeniedReason at 482 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_AskKickDeniedMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_AskKickDeniedMessage_specs_1 = {
|
||||||
sizeof(struct AskKickDeniedMessage),
|
sizeof(struct AskKickDeniedMessage),
|
||||||
|
|||||||
+2
-2
@@ -34,8 +34,8 @@ static ber_tlv_tag_t asn_DEF_AskKickPlayerMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_AskKickPlayerMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_AskKickPlayerMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 473 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 474 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* playerId at 475 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* playerId at 476 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_AskKickPlayerMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_AskKickPlayerMessage_specs_1 = {
|
||||||
sizeof(struct AskKickPlayerMessage),
|
sizeof(struct AskKickPlayerMessage),
|
||||||
|
|||||||
Vendored
+9
-9
@@ -80,10 +80,10 @@ static asn_TYPE_member_t asn_MBR_chatType_2[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_chatType_tag2el_2[] = {
|
static asn_TYPE_tag2member_t asn_MAP_chatType_tag2el_2[] = {
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatTypeLobby at 573 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatTypeLobby at 574 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* chatTypeGame at 574 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* chatTypeGame at 575 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* chatTypeBot at 575 */
|
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* chatTypeBot at 576 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 3, 0, 0 } /* chatTypeBroadcast at 577 */
|
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 3, 0, 0 } /* chatTypeBroadcast at 578 */
|
||||||
};
|
};
|
||||||
static asn_CHOICE_specifics_t asn_SPC_chatType_specs_2 = {
|
static asn_CHOICE_specifics_t asn_SPC_chatType_specs_2 = {
|
||||||
sizeof(struct chatType),
|
sizeof(struct chatType),
|
||||||
@@ -143,11 +143,11 @@ static ber_tlv_tag_t asn_DEF_ChatMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_ChatMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_ChatMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* chatText at 578 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* chatText at 579 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatTypeLobby at 573 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatTypeLobby at 574 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 }, /* chatTypeGame at 574 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 }, /* chatTypeGame at 575 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 0, 0, 0 }, /* chatTypeBot at 575 */
|
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 0, 0, 0 }, /* chatTypeBot at 576 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 0, 0, 0 } /* chatTypeBroadcast at 577 */
|
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 0, 0, 0 } /* chatTypeBroadcast at 578 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_ChatMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_ChatMessage_specs_1 = {
|
||||||
sizeof(struct ChatMessage),
|
sizeof(struct ChatMessage),
|
||||||
|
|||||||
+5
-5
@@ -62,8 +62,8 @@ static asn_TYPE_member_t asn_MBR_chatRequestType_2[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_chatRequestType_tag2el_2[] = {
|
static asn_TYPE_tag2member_t asn_MAP_chatRequestType_tag2el_2[] = {
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatRequestTypeLobby at 558 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatRequestTypeLobby at 559 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* chatRequestTypeGame at 560 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* chatRequestTypeGame at 561 */
|
||||||
};
|
};
|
||||||
static asn_CHOICE_specifics_t asn_SPC_chatRequestType_specs_2 = {
|
static asn_CHOICE_specifics_t asn_SPC_chatRequestType_specs_2 = {
|
||||||
sizeof(struct chatRequestType),
|
sizeof(struct chatRequestType),
|
||||||
@@ -123,9 +123,9 @@ static ber_tlv_tag_t asn_DEF_ChatRequestMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_ChatRequestMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_ChatRequestMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* chatText at 561 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 1, 0, 0 }, /* chatText at 562 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatRequestTypeLobby at 558 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* chatRequestTypeLobby at 559 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 } /* chatRequestTypeGame at 560 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 0, 0, 0 } /* chatRequestTypeGame at 561 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_ChatRequestMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_ChatRequestMessage_specs_1 = {
|
||||||
sizeof(struct ChatRequestMessage),
|
sizeof(struct ChatRequestMessage),
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@ static ber_tlv_tag_t asn_DEF_ChatRequestTypeGame_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_ChatRequestTypeGame_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_ChatRequestTypeGame_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 569 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 570 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_ChatRequestTypeGame_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_ChatRequestTypeGame_specs_1 = {
|
||||||
sizeof(struct ChatRequestTypeGame),
|
sizeof(struct ChatRequestTypeGame),
|
||||||
|
|||||||
Vendored
+2
-2
@@ -33,8 +33,8 @@ static ber_tlv_tag_t asn_DEF_ChatTypeGame_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_ChatTypeGame_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_ChatTypeGame_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 586 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 587 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* playerId at 588 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* playerId at 589 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_ChatTypeGame_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_ChatTypeGame_specs_1 = {
|
||||||
sizeof(struct ChatTypeGame),
|
sizeof(struct ChatTypeGame),
|
||||||
|
|||||||
Vendored
+1
-1
@@ -24,7 +24,7 @@ static ber_tlv_tag_t asn_DEF_ChatTypeLobby_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_ChatTypeLobby_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_ChatTypeLobby_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* playerId at 583 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* playerId at 584 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_ChatTypeLobby_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_ChatTypeLobby_specs_1 = {
|
||||||
sizeof(struct ChatTypeLobby),
|
sizeof(struct ChatTypeLobby),
|
||||||
|
|||||||
+4
-4
@@ -52,10 +52,10 @@ static ber_tlv_tag_t asn_DEF_DealFlopCardsMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_DealFlopCardsMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_DealFlopCardsMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 3 }, /* gameId at 412 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 3 }, /* gameId at 413 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 2 }, /* flopCard1 at 413 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 2 }, /* flopCard1 at 414 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 1 }, /* flopCard2 at 414 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 1 }, /* flopCard2 at 415 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 0 } /* flopCard3 at 416 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 0 } /* flopCard3 at 417 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_DealFlopCardsMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_DealFlopCardsMessage_specs_1 = {
|
||||||
sizeof(struct DealFlopCardsMessage),
|
sizeof(struct DealFlopCardsMessage),
|
||||||
|
|||||||
+2
-2
@@ -34,8 +34,8 @@ static ber_tlv_tag_t asn_DEF_DealRiverCardMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_DealRiverCardMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_DealRiverCardMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 424 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 425 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* riverCard at 426 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* riverCard at 427 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_DealRiverCardMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_DealRiverCardMessage_specs_1 = {
|
||||||
sizeof(struct DealRiverCardMessage),
|
sizeof(struct DealRiverCardMessage),
|
||||||
|
|||||||
+2
-2
@@ -34,8 +34,8 @@ static ber_tlv_tag_t asn_DEF_DealTurnCardMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_DealTurnCardMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_DealTurnCardMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 419 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 420 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* turnCard at 421 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* turnCard at 422 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_DealTurnCardMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_DealTurnCardMessage_specs_1 = {
|
||||||
sizeof(struct DealTurnCardMessage),
|
sizeof(struct DealTurnCardMessage),
|
||||||
|
|||||||
Vendored
+1
-1
@@ -57,7 +57,7 @@ static ber_tlv_tag_t asn_DEF_DialogMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_DialogMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_DialogMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 0 } /* notificationText at 597 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 0 } /* notificationText at 598 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_DialogMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_DialogMessage_specs_1 = {
|
||||||
sizeof(struct DialogMessage),
|
sizeof(struct DialogMessage),
|
||||||
|
|||||||
+6
-6
@@ -241,12 +241,12 @@ static ber_tlv_tag_t asn_DEF_EndKickPetitionMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_EndKickPetitionMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_EndKickPetitionMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 4, 0, 0 }, /* resultPlayerKicked at 536 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 4, 0, 0 }, /* resultPlayerKicked at 537 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 3 }, /* gameId at 532 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 3 }, /* gameId at 533 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 2 }, /* petitionId at 533 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 2 }, /* petitionId at 534 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 1 }, /* numVotesAgainstKicking at 534 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 1 }, /* numVotesAgainstKicking at 535 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 0 }, /* numVotesInFavourOfKicking at 535 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 0 }, /* numVotesInFavourOfKicking at 536 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 5, 0, 0 } /* petitionEndReason at 538 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 5, 0, 0 } /* petitionEndReason at 539 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_EndKickPetitionMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_EndKickPetitionMessage_specs_1 = {
|
||||||
sizeof(struct EndKickPetitionMessage),
|
sizeof(struct EndKickPetitionMessage),
|
||||||
|
|||||||
+2
-2
@@ -34,8 +34,8 @@ static ber_tlv_tag_t asn_DEF_EndOfGameMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_EndOfGameMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_EndOfGameMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 468 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 469 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* winnerPlayerId at 470 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* winnerPlayerId at 471 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_EndOfGameMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_EndOfGameMessage_specs_1 = {
|
||||||
sizeof(struct EndOfGameMessage),
|
sizeof(struct EndOfGameMessage),
|
||||||
|
|||||||
+3
-3
@@ -92,9 +92,9 @@ static ber_tlv_tag_t asn_DEF_EndOfHandHideCards_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_EndOfHandHideCards_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_EndOfHandHideCards_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 2 }, /* playerId at 462 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 2 }, /* playerId at 463 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 1 }, /* moneyWon at 463 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 1 }, /* moneyWon at 464 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 0 } /* playerMoney at 464 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 0 } /* playerMoney at 465 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_EndOfHandHideCards_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_EndOfHandHideCards_specs_1 = {
|
||||||
sizeof(struct EndOfHandHideCards),
|
sizeof(struct EndOfHandHideCards),
|
||||||
|
|||||||
+5
-5
@@ -30,8 +30,8 @@ static asn_TYPE_member_t asn_MBR_endOfHandType_3[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_endOfHandType_tag2el_3[] = {
|
static asn_TYPE_tag2member_t asn_MAP_endOfHandType_tag2el_3[] = {
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* endOfHandShowCards at 442 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* endOfHandShowCards at 443 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* endOfHandHideCards at 444 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* endOfHandHideCards at 445 */
|
||||||
};
|
};
|
||||||
static asn_CHOICE_specifics_t asn_SPC_endOfHandType_specs_3 = {
|
static asn_CHOICE_specifics_t asn_SPC_endOfHandType_specs_3 = {
|
||||||
sizeof(struct endOfHandType),
|
sizeof(struct endOfHandType),
|
||||||
@@ -91,9 +91,9 @@ static ber_tlv_tag_t asn_DEF_EndOfHandMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_EndOfHandMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_EndOfHandMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* gameId at 440 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* gameId at 441 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* endOfHandShowCards at 442 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* endOfHandShowCards at 443 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* endOfHandHideCards at 444 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* endOfHandHideCards at 445 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_EndOfHandMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_EndOfHandMessage_specs_1 = {
|
||||||
sizeof(struct EndOfHandMessage),
|
sizeof(struct EndOfHandMessage),
|
||||||
|
|||||||
+1
-1
@@ -94,7 +94,7 @@ static ber_tlv_tag_t asn_DEF_EndOfHandShowCards_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_EndOfHandShowCards_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_EndOfHandShowCards_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* playerResults at 449 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* playerResults at 450 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_EndOfHandShowCards_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_EndOfHandShowCards_specs_1 = {
|
||||||
sizeof(struct EndOfHandShowCards),
|
sizeof(struct EndOfHandShowCards),
|
||||||
|
|||||||
Vendored
+1
-1
@@ -166,7 +166,7 @@ static ber_tlv_tag_t asn_DEF_ErrorMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_ErrorMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_ErrorMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* errorReason at 613 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* errorReason at 614 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_ErrorMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_ErrorMessage_specs_1 = {
|
||||||
sizeof(struct ErrorMessage),
|
sizeof(struct ErrorMessage),
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@ static ber_tlv_tag_t asn_DEF_GameAdminChanged_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_GameAdminChanged_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_GameAdminChanged_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* newAdminPlayerId at 331 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* newAdminPlayerId at 332 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_GameAdminChanged_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_GameAdminChanged_specs_1 = {
|
||||||
sizeof(struct GameAdminChanged),
|
sizeof(struct GameAdminChanged),
|
||||||
|
|||||||
+2
-2
@@ -33,8 +33,8 @@ static ber_tlv_tag_t asn_DEF_GamePlayerJoined_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_GamePlayerJoined_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_GamePlayerJoined_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 1, 0, 0 }, /* isAdmin at 317 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 1, 0, 0 }, /* isAdmin at 318 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* playerId at 316 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* playerId at 317 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_GamePlayerJoined_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_GamePlayerJoined_specs_1 = {
|
||||||
sizeof(struct GamePlayerJoined),
|
sizeof(struct GamePlayerJoined),
|
||||||
|
|||||||
+2
-2
@@ -152,8 +152,8 @@ static ber_tlv_tag_t asn_DEF_GamePlayerLeft_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_GamePlayerLeft_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_GamePlayerLeft_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* playerId at 321 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* playerId at 322 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 0 } /* gamePlayerLeftReason at 323 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 0 } /* gamePlayerLeftReason at 324 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_GamePlayerLeft_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_GamePlayerLeft_specs_1 = {
|
||||||
sizeof(struct GamePlayerLeft),
|
sizeof(struct GamePlayerLeft),
|
||||||
|
|||||||
+9
-9
@@ -48,10 +48,10 @@ static asn_TYPE_member_t asn_MBR_gamePlayerNotification_3[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_gamePlayerNotification_tag2el_3[] = {
|
static asn_TYPE_tag2member_t asn_MAP_gamePlayerNotification_tag2el_3[] = {
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* gamePlayerJoined at 308 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* gamePlayerJoined at 309 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* gamePlayerLeft at 309 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* gamePlayerLeft at 310 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* gameAdminChanged at 310 */
|
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* gameAdminChanged at 311 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 3, 0, 0 } /* removedFromGame at 312 */
|
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 3, 0, 0 } /* removedFromGame at 313 */
|
||||||
};
|
};
|
||||||
static asn_CHOICE_specifics_t asn_SPC_gamePlayerNotification_specs_3 = {
|
static asn_CHOICE_specifics_t asn_SPC_gamePlayerNotification_specs_3 = {
|
||||||
sizeof(struct gamePlayerNotification),
|
sizeof(struct gamePlayerNotification),
|
||||||
@@ -111,11 +111,11 @@ static ber_tlv_tag_t asn_DEF_GamePlayerMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_GamePlayerMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_GamePlayerMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* gameId at 306 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* gameId at 307 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* gamePlayerJoined at 308 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* gamePlayerJoined at 309 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* gamePlayerLeft at 309 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* gamePlayerLeft at 310 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 1, 0, 0 }, /* gameAdminChanged at 310 */
|
{ (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 1, 0, 0 }, /* gameAdminChanged at 311 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 1, 0, 0 } /* removedFromGame at 312 */
|
{ (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 1, 0, 0 } /* removedFromGame at 313 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_GamePlayerMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_GamePlayerMessage_specs_1 = {
|
||||||
sizeof(struct GamePlayerMessage),
|
sizeof(struct GamePlayerMessage),
|
||||||
|
|||||||
+3
-3
@@ -113,9 +113,9 @@ static ber_tlv_tag_t asn_DEF_GameStartMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_GameStartMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_GameStartMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 363 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 364 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* startDealerPlayerId at 364 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* startDealerPlayerId at 365 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, 0, 0 } /* playerSeats at 366 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 2, 0, 0 } /* playerSeats at 367 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_GameStartMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_GameStartMessage_specs_1 = {
|
||||||
sizeof(struct GameStartMessage),
|
sizeof(struct GameStartMessage),
|
||||||
|
|||||||
+4
-4
@@ -77,10 +77,10 @@ static ber_tlv_tag_t asn_DEF_HandStartMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_HandStartMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_HandStartMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 3 }, /* gameId at 369 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 3 }, /* gameId at 370 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 2 }, /* yourCard1 at 370 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 2 }, /* yourCard1 at 371 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 1 }, /* yourCard2 at 371 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 1 }, /* yourCard2 at 372 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 0 } /* smallBlind at 372 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 0 } /* smallBlind at 373 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_HandStartMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_HandStartMessage_specs_1 = {
|
||||||
sizeof(struct HandStartMessage),
|
sizeof(struct HandStartMessage),
|
||||||
|
|||||||
+5
-5
@@ -136,11 +136,11 @@ static ber_tlv_tag_t asn_DEF_KickPetitionUpdateMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_KickPetitionUpdateMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_KickPetitionUpdateMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 4 }, /* gameId at 524 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 4 }, /* gameId at 525 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 3 }, /* petitionId at 525 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 3 }, /* petitionId at 526 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 2 }, /* numVotesAgainstKicking at 526 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 2 }, /* numVotesAgainstKicking at 527 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 1 }, /* numVotesInFavourOfKicking at 527 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 1 }, /* numVotesInFavourOfKicking at 528 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -4, 0 } /* numVotesNeededToKick at 528 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -4, 0 } /* numVotesNeededToKick at 529 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_KickPetitionUpdateMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_KickPetitionUpdateMessage_specs_1 = {
|
||||||
sizeof(struct KickPetitionUpdateMessage),
|
sizeof(struct KickPetitionUpdateMessage),
|
||||||
|
|||||||
+2
-2
@@ -34,8 +34,8 @@ static ber_tlv_tag_t asn_DEF_KickPlayerRequestMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_KickPlayerRequestMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_KickPlayerRequestMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 345 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 346 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* playerId at 347 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* playerId at 348 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_KickPlayerRequestMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_KickPlayerRequestMessage_specs_1 = {
|
||||||
sizeof(struct KickPlayerRequestMessage),
|
sizeof(struct KickPlayerRequestMessage),
|
||||||
|
|||||||
+1
-1
@@ -25,7 +25,7 @@ static ber_tlv_tag_t asn_DEF_LeaveGameRequestMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_LeaveGameRequestMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_LeaveGameRequestMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 351 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 352 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_LeaveGameRequestMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_LeaveGameRequestMessage_specs_1 = {
|
||||||
sizeof(struct LeaveGameRequestMessage),
|
sizeof(struct LeaveGameRequestMessage),
|
||||||
|
|||||||
+4
-4
@@ -77,10 +77,10 @@ static ber_tlv_tag_t asn_DEF_MyActionRequestMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_MyActionRequestMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_MyActionRequestMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 382 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 383 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -1, 0 }, /* myRelativeBet at 385 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -1, 0 }, /* myRelativeBet at 386 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 1 }, /* gameState at 383 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 1 }, /* gameState at 384 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, -1, 0 } /* myAction at 384 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, -1, 0 } /* myAction at 385 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_MyActionRequestMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_MyActionRequestMessage_specs_1 = {
|
||||||
sizeof(struct MyActionRequestMessage),
|
sizeof(struct MyActionRequestMessage),
|
||||||
|
|||||||
Vendored
+61
-26
@@ -133,7 +133,7 @@ endRaiseMode_8_encode_xer(asn_TYPE_descriptor_t *td, void *structure,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
memb_NativeInteger_constraint_17(asn_TYPE_descriptor_t *td, const void *sptr,
|
memb_NativeInteger_constraint_18(asn_TYPE_descriptor_t *td, const void *sptr,
|
||||||
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
|
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
|
||||||
long value;
|
long value;
|
||||||
|
|
||||||
@@ -239,6 +239,31 @@ memb_proposedGuiSpeed_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
memb_delayBetweenHands_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
|
||||||
|
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
|
||||||
|
long value;
|
||||||
|
|
||||||
|
if(!sptr) {
|
||||||
|
_ASN_CTFAIL(app_key, td, sptr,
|
||||||
|
"%s: value not given (%s:%d)",
|
||||||
|
td->name, __FILE__, __LINE__);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
value = *(const long *)sptr;
|
||||||
|
|
||||||
|
if((value >= 5 && value <= 20)) {
|
||||||
|
/* Constraint check succeeded */
|
||||||
|
return 0;
|
||||||
|
} else {
|
||||||
|
_ASN_CTFAIL(app_key, td, sptr,
|
||||||
|
"%s: constraint failed (%s:%d)",
|
||||||
|
td->name, __FILE__, __LINE__);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
memb_playerActionTimeout_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
|
memb_playerActionTimeout_constraint_1(asn_TYPE_descriptor_t *td, const void *sptr,
|
||||||
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
|
asn_app_constraint_failed_f *ctfailcb, void *app_key) {
|
||||||
@@ -468,27 +493,27 @@ asn_TYPE_descriptor_t asn_DEF_endRaiseMode_8 = {
|
|||||||
&asn_SPC_endRaiseMode_specs_8 /* Additional specs */
|
&asn_SPC_endRaiseMode_specs_8 /* Additional specs */
|
||||||
};
|
};
|
||||||
|
|
||||||
static asn_TYPE_member_t asn_MBR_manualBlinds_17[] = {
|
static asn_TYPE_member_t asn_MBR_manualBlinds_18[] = {
|
||||||
{ ATF_POINTER, 0, 0,
|
{ ATF_POINTER, 0, 0,
|
||||||
(ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
|
(ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
|
||||||
0,
|
0,
|
||||||
&asn_DEF_NativeInteger,
|
&asn_DEF_NativeInteger,
|
||||||
memb_NativeInteger_constraint_17,
|
memb_NativeInteger_constraint_18,
|
||||||
0, /* PER is not compiled, use -gen-PER */
|
0, /* PER is not compiled, use -gen-PER */
|
||||||
0,
|
0,
|
||||||
""
|
""
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
static ber_tlv_tag_t asn_DEF_manualBlinds_tags_17[] = {
|
static ber_tlv_tag_t asn_DEF_manualBlinds_tags_18[] = {
|
||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_SET_OF_specifics_t asn_SPC_manualBlinds_specs_17 = {
|
static asn_SET_OF_specifics_t asn_SPC_manualBlinds_specs_18 = {
|
||||||
sizeof(struct manualBlinds),
|
sizeof(struct manualBlinds),
|
||||||
offsetof(struct manualBlinds, _asn_ctx),
|
offsetof(struct manualBlinds, _asn_ctx),
|
||||||
0, /* XER encoding is XMLDelimitedItemList */
|
0, /* XER encoding is XMLDelimitedItemList */
|
||||||
};
|
};
|
||||||
static /* Use -fall-defs-global to expose */
|
static /* Use -fall-defs-global to expose */
|
||||||
asn_TYPE_descriptor_t asn_DEF_manualBlinds_17 = {
|
asn_TYPE_descriptor_t asn_DEF_manualBlinds_18 = {
|
||||||
"manualBlinds",
|
"manualBlinds",
|
||||||
"manualBlinds",
|
"manualBlinds",
|
||||||
SEQUENCE_OF_free,
|
SEQUENCE_OF_free,
|
||||||
@@ -500,16 +525,16 @@ asn_TYPE_descriptor_t asn_DEF_manualBlinds_17 = {
|
|||||||
SEQUENCE_OF_encode_xer,
|
SEQUENCE_OF_encode_xer,
|
||||||
0, 0, /* No PER support, use "-gen-PER" to enable */
|
0, 0, /* No PER support, use "-gen-PER" to enable */
|
||||||
0, /* Use generic outmost tag fetcher */
|
0, /* Use generic outmost tag fetcher */
|
||||||
asn_DEF_manualBlinds_tags_17,
|
asn_DEF_manualBlinds_tags_18,
|
||||||
sizeof(asn_DEF_manualBlinds_tags_17)
|
sizeof(asn_DEF_manualBlinds_tags_18)
|
||||||
/sizeof(asn_DEF_manualBlinds_tags_17[0]), /* 1 */
|
/sizeof(asn_DEF_manualBlinds_tags_18[0]), /* 1 */
|
||||||
asn_DEF_manualBlinds_tags_17, /* Same as above */
|
asn_DEF_manualBlinds_tags_18, /* Same as above */
|
||||||
sizeof(asn_DEF_manualBlinds_tags_17)
|
sizeof(asn_DEF_manualBlinds_tags_18)
|
||||||
/sizeof(asn_DEF_manualBlinds_tags_17[0]), /* 1 */
|
/sizeof(asn_DEF_manualBlinds_tags_18[0]), /* 1 */
|
||||||
0, /* No PER visible constraints */
|
0, /* No PER visible constraints */
|
||||||
asn_MBR_manualBlinds_17,
|
asn_MBR_manualBlinds_18,
|
||||||
1, /* Single element */
|
1, /* Single element */
|
||||||
&asn_SPC_manualBlinds_specs_17 /* Additional specs */
|
&asn_SPC_manualBlinds_specs_18 /* Additional specs */
|
||||||
};
|
};
|
||||||
|
|
||||||
static asn_TYPE_member_t asn_MBR_NetGameInfo_1[] = {
|
static asn_TYPE_member_t asn_MBR_NetGameInfo_1[] = {
|
||||||
@@ -558,6 +583,15 @@ static asn_TYPE_member_t asn_MBR_NetGameInfo_1[] = {
|
|||||||
0,
|
0,
|
||||||
"proposedGuiSpeed"
|
"proposedGuiSpeed"
|
||||||
},
|
},
|
||||||
|
{ ATF_NOFLAGS, 0, offsetof(struct NetGameInfo, delayBetweenHands),
|
||||||
|
(ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
|
||||||
|
0,
|
||||||
|
&asn_DEF_NativeInteger,
|
||||||
|
memb_delayBetweenHands_constraint_1,
|
||||||
|
0, /* PER is not compiled, use -gen-PER */
|
||||||
|
0,
|
||||||
|
"delayBetweenHands"
|
||||||
|
},
|
||||||
{ ATF_NOFLAGS, 0, offsetof(struct NetGameInfo, playerActionTimeout),
|
{ ATF_NOFLAGS, 0, offsetof(struct NetGameInfo, playerActionTimeout),
|
||||||
(ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
|
(ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
|
||||||
0,
|
0,
|
||||||
@@ -597,7 +631,7 @@ static asn_TYPE_member_t asn_MBR_NetGameInfo_1[] = {
|
|||||||
{ ATF_NOFLAGS, 0, offsetof(struct NetGameInfo, manualBlinds),
|
{ ATF_NOFLAGS, 0, offsetof(struct NetGameInfo, manualBlinds),
|
||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
|
||||||
0,
|
0,
|
||||||
&asn_DEF_manualBlinds_17,
|
&asn_DEF_manualBlinds_18,
|
||||||
memb_manualBlinds_constraint_1,
|
memb_manualBlinds_constraint_1,
|
||||||
0, /* PER is not compiled, use -gen-PER */
|
0, /* PER is not compiled, use -gen-PER */
|
||||||
0,
|
0,
|
||||||
@@ -608,15 +642,16 @@ static ber_tlv_tag_t asn_DEF_NetGameInfo_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_NetGameInfo_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_NetGameInfo_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 5 }, /* maxNumPlayers at 287 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 6 }, /* maxNumPlayers at 287 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -1, 4 }, /* proposedGuiSpeed at 297 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -1, 5 }, /* proposedGuiSpeed at 297 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -2, 3 }, /* playerActionTimeout at 298 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -2, 4 }, /* delayBetweenHands at 298 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 6, -3, 2 }, /* firstSmallBlind at 299 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 6, -3, 3 }, /* playerActionTimeout at 299 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 7, -4, 1 }, /* endRaiseSmallBlindValue at 300 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 7, -4, 2 }, /* firstSmallBlind at 300 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 8, -5, 0 }, /* startMoney at 301 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 8, -5, 1 }, /* endRaiseSmallBlindValue at 301 */
|
||||||
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 9, -6, 0 }, /* startMoney at 302 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 3, 0, 0 }, /* endRaiseMode at 293 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 3, 0, 0 }, /* endRaiseMode at 293 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 0 }, /* gameName at 286 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (12 << 2)), 0, 0, 0 }, /* gameName at 286 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 9, 0, 0 }, /* manualBlinds at 302 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 10, 0, 0 }, /* manualBlinds at 303 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 2, 0, 0 }, /* raiseEveryHands at 289 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 2, 0, 0 }, /* raiseEveryHands at 289 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 2, 0, 0 } /* raiseEveryMinutes at 290 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 2, 0, 0 } /* raiseEveryMinutes at 290 */
|
||||||
};
|
};
|
||||||
@@ -624,10 +659,10 @@ static asn_SEQUENCE_specifics_t asn_SPC_NetGameInfo_specs_1 = {
|
|||||||
sizeof(struct NetGameInfo),
|
sizeof(struct NetGameInfo),
|
||||||
offsetof(struct NetGameInfo, _asn_ctx),
|
offsetof(struct NetGameInfo, _asn_ctx),
|
||||||
asn_MAP_NetGameInfo_tag2el_1,
|
asn_MAP_NetGameInfo_tag2el_1,
|
||||||
11, /* Count of tags in the map */
|
12, /* Count of tags in the map */
|
||||||
0, 0, 0, /* Optional elements (not needed) */
|
0, 0, 0, /* Optional elements (not needed) */
|
||||||
9, /* Start extensions */
|
10, /* Start extensions */
|
||||||
11 /* Stop extensions */
|
12 /* Stop extensions */
|
||||||
};
|
};
|
||||||
asn_TYPE_descriptor_t asn_DEF_NetGameInfo = {
|
asn_TYPE_descriptor_t asn_DEF_NetGameInfo = {
|
||||||
"NetGameInfo",
|
"NetGameInfo",
|
||||||
@@ -649,7 +684,7 @@ asn_TYPE_descriptor_t asn_DEF_NetGameInfo = {
|
|||||||
/sizeof(asn_DEF_NetGameInfo_tags_1[0]), /* 1 */
|
/sizeof(asn_DEF_NetGameInfo_tags_1[0]), /* 1 */
|
||||||
0, /* No PER visible constraints */
|
0, /* No PER visible constraints */
|
||||||
asn_MBR_NetGameInfo_1,
|
asn_MBR_NetGameInfo_1,
|
||||||
10, /* Elements count */
|
11, /* Elements count */
|
||||||
&asn_SPC_NetGameInfo_specs_1 /* Additional specs */
|
&asn_SPC_NetGameInfo_specs_1 /* Additional specs */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
@@ -58,6 +58,7 @@ typedef struct NetGameInfo {
|
|||||||
} raiseIntervalMode;
|
} raiseIntervalMode;
|
||||||
long endRaiseMode;
|
long endRaiseMode;
|
||||||
long proposedGuiSpeed;
|
long proposedGuiSpeed;
|
||||||
|
long delayBetweenHands;
|
||||||
long playerActionTimeout;
|
long playerActionTimeout;
|
||||||
long firstSmallBlind;
|
long firstSmallBlind;
|
||||||
long endRaiseSmallBlindValue;
|
long endRaiseSmallBlindValue;
|
||||||
|
|||||||
Vendored
+3
-3
@@ -42,9 +42,9 @@ static ber_tlv_tag_t asn_DEF_PlayerAllIn_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_PlayerAllIn_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_PlayerAllIn_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 2 }, /* playerId at 434 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 2 }, /* playerId at 435 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 1 }, /* allInCard1 at 435 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 1 }, /* allInCard1 at 436 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 0 } /* allInCard2 at 437 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 0 } /* allInCard2 at 438 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_PlayerAllIn_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_PlayerAllIn_specs_1 = {
|
||||||
sizeof(struct PlayerAllIn),
|
sizeof(struct PlayerAllIn),
|
||||||
|
|||||||
Vendored
+7
-7
@@ -198,13 +198,13 @@ static ber_tlv_tag_t asn_DEF_PlayerResult_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_PlayerResult_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_PlayerResult_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 5 }, /* playerId at 452 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 5 }, /* playerId at 453 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 4 }, /* resultCard1 at 453 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 4 }, /* resultCard1 at 454 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 3 }, /* resultCard2 at 454 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 3 }, /* resultCard2 at 455 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -3, 2 }, /* cardsValue at 456 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -3, 2 }, /* cardsValue at 457 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -4, 1 }, /* moneyWon at 457 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -4, 1 }, /* moneyWon at 458 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 6, -5, 0 }, /* playerMoney at 458 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 6, -5, 0 }, /* playerMoney at 459 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, 0, 0 } /* bestHandPosition at 455 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 3, 0, 0 } /* bestHandPosition at 456 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_PlayerResult_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_PlayerResult_specs_1 = {
|
||||||
sizeof(struct PlayerResult),
|
sizeof(struct PlayerResult),
|
||||||
|
|||||||
+8
-8
@@ -188,14 +188,14 @@ static ber_tlv_tag_t asn_DEF_PlayersActionDoneMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_PlayersActionDoneMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_PlayersActionDoneMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 5 }, /* gameId at 401 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 5 }, /* gameId at 402 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 4 }, /* playerId at 402 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 4 }, /* playerId at 403 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -2, 3 }, /* totalPlayerBet at 405 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -2, 3 }, /* totalPlayerBet at 406 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -3, 2 }, /* playerMoney at 406 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -3, 2 }, /* playerMoney at 407 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 6, -4, 1 }, /* highestSet at 407 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 6, -4, 1 }, /* highestSet at 408 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 7, -5, 0 }, /* minimumRaise at 408 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 7, -5, 0 }, /* minimumRaise at 409 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 1 }, /* gameState at 403 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 1 }, /* gameState at 404 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 3, -1, 0 } /* playerAction at 404 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 3, -1, 0 } /* playerAction at 405 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_PlayersActionDoneMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_PlayersActionDoneMessage_specs_1 = {
|
||||||
sizeof(struct PlayersActionDoneMessage),
|
sizeof(struct PlayersActionDoneMessage),
|
||||||
|
|||||||
+3
-3
@@ -43,9 +43,9 @@ static ber_tlv_tag_t asn_DEF_PlayersTurnMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_PlayersTurnMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_PlayersTurnMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 376 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 377 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* playerId at 377 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* playerId at 378 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 0 } /* gameState at 379 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, 0, 0 } /* gameState at 380 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_PlayersTurnMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_PlayersTurnMessage_specs_1 = {
|
||||||
sizeof(struct PlayersTurnMessage),
|
sizeof(struct PlayersTurnMessage),
|
||||||
|
|||||||
+1
-1
@@ -149,7 +149,7 @@ static ber_tlv_tag_t asn_DEF_RemovedFromGame_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_RemovedFromGame_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_RemovedFromGame_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* removedFromGameReason at 335 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* removedFromGameReason at 336 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_RemovedFromGame_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_RemovedFromGame_specs_1 = {
|
||||||
sizeof(struct RemovedFromGame),
|
sizeof(struct RemovedFromGame),
|
||||||
|
|||||||
+1
-1
@@ -25,7 +25,7 @@ static ber_tlv_tag_t asn_DEF_StartEventAckMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_StartEventAckMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_StartEventAckMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 360 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 361 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_StartEventAckMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_StartEventAckMessage_specs_1 = {
|
||||||
sizeof(struct StartEventAckMessage),
|
sizeof(struct StartEventAckMessage),
|
||||||
|
|||||||
+2
-2
@@ -34,8 +34,8 @@ static ber_tlv_tag_t asn_DEF_StartEventMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_StartEventMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_StartEventMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 1, 0, 0 }, /* fillWithComputerPlayers at 355 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 1, 0, 0 }, /* fillWithComputerPlayers at 356 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 354 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 } /* gameId at 355 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_StartEventMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_StartEventMessage_specs_1 = {
|
||||||
sizeof(struct StartEventMessage),
|
sizeof(struct StartEventMessage),
|
||||||
|
|||||||
+6
-6
@@ -120,12 +120,12 @@ static ber_tlv_tag_t asn_DEF_StartKickPetitionMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_StartKickPetitionMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_StartKickPetitionMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 5 }, /* gameId at 490 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 5 }, /* gameId at 491 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 4 }, /* petitionId at 491 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 4 }, /* petitionId at 492 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 3 }, /* proposingPlayerId at 492 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 2, -2, 3 }, /* proposingPlayerId at 493 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 2 }, /* kickPlayerId at 493 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -3, 2 }, /* kickPlayerId at 494 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -4, 1 }, /* kickTimeoutSec at 494 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 4, -4, 1 }, /* kickTimeoutSec at 495 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -5, 0 } /* numVotesNeededToKick at 495 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 5, -5, 0 } /* numVotesNeededToKick at 496 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_StartKickPetitionMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_StartKickPetitionMessage_specs_1 = {
|
||||||
sizeof(struct StartKickPetitionMessage),
|
sizeof(struct StartKickPetitionMessage),
|
||||||
|
|||||||
+2
-2
@@ -148,8 +148,8 @@ static ber_tlv_tag_t asn_DEF_StatisticsData_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_StatisticsData_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_StatisticsData_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 0 }, /* statisticsValue at 554 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 0 }, /* statisticsValue at 555 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* statisticsType at 551 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* statisticsType at 552 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_StatisticsData_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_StatisticsData_specs_1 = {
|
||||||
sizeof(struct StatisticsData),
|
sizeof(struct StatisticsData),
|
||||||
|
|||||||
+1
-1
@@ -95,7 +95,7 @@ static ber_tlv_tag_t asn_DEF_StatisticsMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_StatisticsMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_StatisticsMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* statisticsData at 547 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)), 0, 0, 0 } /* statisticsData at 548 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_StatisticsMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_StatisticsMessage_specs_1 = {
|
||||||
sizeof(struct StatisticsMessage),
|
sizeof(struct StatisticsMessage),
|
||||||
|
|||||||
+2
-2
@@ -151,8 +151,8 @@ static ber_tlv_tag_t asn_DEF_TimeoutWarningMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_TimeoutWarningMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_TimeoutWarningMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 0 }, /* remainingSeconds at 606 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, 0, 0 }, /* remainingSeconds at 607 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* timeoutReason at 602 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* timeoutReason at 603 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_TimeoutWarningMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_TimeoutWarningMessage_specs_1 = {
|
||||||
sizeof(struct TimeoutWarningMessage),
|
sizeof(struct TimeoutWarningMessage),
|
||||||
|
|||||||
+1
-1
@@ -141,7 +141,7 @@ static ber_tlv_tag_t asn_DEF_VoteKickDenied_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_VoteKickDenied_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_VoteKickDenied_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* voteKickDeniedReason at 518 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 0, 0, 0 } /* voteKickDeniedReason at 519 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_VoteKickDenied_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_VoteKickDenied_specs_1 = {
|
||||||
sizeof(struct VoteKickDenied),
|
sizeof(struct VoteKickDenied),
|
||||||
|
|||||||
+6
-6
@@ -30,8 +30,8 @@ static asn_TYPE_member_t asn_MBR_voteKickReplyType_4[] = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_voteKickReplyType_tag2el_4[] = {
|
static asn_TYPE_tag2member_t asn_MAP_voteKickReplyType_tag2el_4[] = {
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* voteKickAck at 508 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* voteKickAck at 509 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* voteKickDenied at 510 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 } /* voteKickDenied at 511 */
|
||||||
};
|
};
|
||||||
static asn_CHOICE_specifics_t asn_SPC_voteKickReplyType_specs_4 = {
|
static asn_CHOICE_specifics_t asn_SPC_voteKickReplyType_specs_4 = {
|
||||||
sizeof(struct voteKickReplyType),
|
sizeof(struct voteKickReplyType),
|
||||||
@@ -100,10 +100,10 @@ static ber_tlv_tag_t asn_DEF_VoteKickReplyMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_VoteKickReplyMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_VoteKickReplyMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 505 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 506 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* petitionId at 506 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* petitionId at 507 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 2, 0, 0 }, /* voteKickAck at 508 */
|
{ (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 2, 0, 0 }, /* voteKickAck at 509 */
|
||||||
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 2, 0, 0 } /* voteKickDenied at 510 */
|
{ (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 2, 0, 0 } /* voteKickDenied at 511 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_VoteKickReplyMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_VoteKickReplyMessage_specs_1 = {
|
||||||
sizeof(struct VoteKickReplyMessage),
|
sizeof(struct VoteKickReplyMessage),
|
||||||
|
|||||||
+3
-3
@@ -43,9 +43,9 @@ static ber_tlv_tag_t asn_DEF_VoteKickRequestMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_VoteKickRequestMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_VoteKickRequestMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 2, 0, 0 }, /* voteKick at 501 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (1 << 2)), 2, 0, 0 }, /* voteKick at 502 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 499 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 500 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* petitionId at 500 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 } /* petitionId at 501 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_VoteKickRequestMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_VoteKickRequestMessage_specs_1 = {
|
||||||
sizeof(struct VoteKickRequestMessage),
|
sizeof(struct VoteKickRequestMessage),
|
||||||
|
|||||||
+5
-5
@@ -205,11 +205,11 @@ static ber_tlv_tag_t asn_DEF_YourActionRejectedMessage_tags_1[] = {
|
|||||||
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
(ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
|
||||||
};
|
};
|
||||||
static asn_TYPE_tag2member_t asn_MAP_YourActionRejectedMessage_tag2el_1[] = {
|
static asn_TYPE_tag2member_t asn_MAP_YourActionRejectedMessage_tag2el_1[] = {
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 389 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* gameId at 390 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -1, 0 }, /* yourRelativeBet at 392 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 3, -1, 0 }, /* yourRelativeBet at 393 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 2 }, /* gameState at 390 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 1, 0, 2 }, /* gameState at 391 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, -1, 1 }, /* yourAction at 391 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 2, -1, 1 }, /* yourAction at 392 */
|
||||||
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 4, -2, 0 } /* rejectionReason at 394 */
|
{ (ASN_TAG_CLASS_UNIVERSAL | (10 << 2)), 4, -2, 0 } /* rejectionReason at 395 */
|
||||||
};
|
};
|
||||||
static asn_SEQUENCE_specifics_t asn_SPC_YourActionRejectedMessage_specs_1 = {
|
static asn_SEQUENCE_specifics_t asn_SPC_YourActionRejectedMessage_specs_1 = {
|
||||||
sizeof(struct YourActionRejectedMessage),
|
sizeof(struct YourActionRejectedMessage),
|
||||||
|
|||||||
Reference in New Issue
Block a user