mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-13 18:17:49 -04:00
Get rid of pnUtW32Addr and make IP strings char*s.
IP addresses don't need to be unicode. pnUtAddr is still around until we replace all NetAddress uses with plNetAddress (they are typedef'ed to each other right now).
This commit is contained in:
@ -677,8 +677,8 @@ struct Auth2Cli_AccountExistsReply {
|
||||
// ServerAddr
|
||||
extern const NetMsg kNetMsg_Auth2Cli_ServerAddr;
|
||||
struct Auth2Cli_ServerAddr {
|
||||
uint32_t messageId;
|
||||
NetAddressNode srvAddr;
|
||||
uint32_t messageId;
|
||||
uint32_t srvAddr;
|
||||
Uuid token;
|
||||
};
|
||||
|
||||
@ -713,13 +713,13 @@ struct Auth2Cli_AcctLoginReply {
|
||||
// AgeReply
|
||||
extern const NetMsg kNetMsg_Auth2Cli_AgeReply;
|
||||
struct Auth2Cli_AgeReply {
|
||||
uint32_t messageId;
|
||||
uint32_t transId;
|
||||
ENetError result;
|
||||
uint32_t ageMcpId;
|
||||
Uuid ageInstId;
|
||||
uint32_t ageVaultId;
|
||||
NetAddressNode gameSrvNode;
|
||||
uint32_t messageId;
|
||||
uint32_t transId;
|
||||
ENetError result;
|
||||
uint32_t ageMcpId;
|
||||
Uuid ageInstId;
|
||||
uint32_t ageVaultId;
|
||||
uint32_t gameSrvNode;
|
||||
};
|
||||
|
||||
// AcctCreateReply
|
||||
|
@ -191,9 +191,9 @@ struct Srv2Mcp_KickPlayer : SrvMsgHeader {
|
||||
***/
|
||||
|
||||
struct Mcp2Srv_AgeJoinReply : SrvMsgHeader {
|
||||
uint32_t ageMcpId;
|
||||
Uuid ageUuid;
|
||||
NetAddressNode gameSrvNode;
|
||||
uint32_t ageMcpId;
|
||||
Uuid ageUuid;
|
||||
uint32_t gameSrvNode;
|
||||
};
|
||||
|
||||
struct Mcp2Srv_AgeSpawnRequest : SrvMsgHeader {
|
||||
|
Reference in New Issue
Block a user