mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 14:37:41 +00:00
Compare commits
3 Commits
OPENURU_BU
...
rarified/w
Author | SHA1 | Date | |
---|---|---|---|
f178d880c0 | |||
0d518e3465 | |||
92e95d5a99 |
@ -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 () {
|
bool NetCliAuthQueryConnected () {
|
||||||
|
|
||||||
|
@ -66,6 +66,7 @@ void NetCliAuthStartConnect (
|
|||||||
);
|
);
|
||||||
bool NetCliAuthQueryConnected ();
|
bool NetCliAuthQueryConnected ();
|
||||||
void NetCliAuthAutoReconnectEnable (bool enable); // is enabled by default
|
void NetCliAuthAutoReconnectEnable (bool enable); // is enabled by default
|
||||||
|
unsigned NetCliAuthGetCurrentConnPort(); // for Game Server socket port
|
||||||
|
|
||||||
// Called after the auth/client connection is encrypted
|
// Called after the auth/client connection is encrypted
|
||||||
typedef void (*FNetCliAuthConnectCallback)();
|
typedef void (*FNetCliAuthConnectCallback)();
|
||||||
|
@ -743,7 +743,7 @@ void NetCliGameStartConnect (
|
|||||||
const NetAddressNode & node
|
const NetAddressNode & node
|
||||||
) {
|
) {
|
||||||
NetAddress addr;
|
NetAddress addr;
|
||||||
NetAddressFromNode(node, kNetDefaultClientPort, &addr);
|
NetAddressFromNode(node, NetCliAuthGetCurrentConnPort(), &addr);
|
||||||
Connect(addr);
|
Connect(addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user