mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-22 13:20:05 +00:00
Merge rarified/gameserverportfix (PR#43)
Add Doxygen work directory to .hgignore
This commit is contained in:
@ -13,4 +13,6 @@ syntax: regexp
|
||||
^MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/Apps/plClient/external/render/
|
||||
^MOULOpenSourceClientPlugin/Plasma20/test/
|
||||
^MOULOpenSourceClientPlugin/Plasma20/tools/
|
||||
^MOULOpenSourceClientPlugin/Plasma20/Doxy/
|
||||
^MOULOpenSourceClientPlugin/StaticSDKs/
|
||||
^patch/
|
||||
|
@ -5215,6 +5215,15 @@ void NetCliAuthStartConnect (
|
||||
}
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
unsigned NetCliAuthGetCurrentConnPort() {
|
||||
unsigned port;
|
||||
s_critsect.Enter();
|
||||
port = NetAddressGetPort(s_active->addr);
|
||||
s_critsect.Leave();
|
||||
return port;
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
bool NetCliAuthQueryConnected () {
|
||||
|
||||
|
@ -66,6 +66,7 @@ void NetCliAuthStartConnect (
|
||||
);
|
||||
bool NetCliAuthQueryConnected ();
|
||||
void NetCliAuthAutoReconnectEnable (bool enable); // is enabled by default
|
||||
unsigned NetCliAuthGetCurrentConnPort(); // for Game Server socket port
|
||||
|
||||
// Called after the auth/client connection is encrypted
|
||||
typedef void (*FNetCliAuthConnectCallback)();
|
||||
|
@ -743,7 +743,7 @@ void NetCliGameStartConnect (
|
||||
const NetAddressNode & node
|
||||
) {
|
||||
NetAddress addr;
|
||||
NetAddressFromNode(node, kNetDefaultClientPort, &addr);
|
||||
NetAddressFromNode(node, NetCliAuthGetCurrentConnPort(), &addr);
|
||||
Connect(addr);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user