mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
if no auth server is set, ask the gate keeper about it (does NOT really add a new message, just enables it. DS already supports it in master)
this makes the setup even easier... just one server to be configured in the server.ini.
This commit is contained in:
@ -735,6 +735,7 @@ static NetMsgInitSend s_send[] = {
|
||||
static NetMsgInitRecv s_recv[] = {
|
||||
{ MSG(PingReply) },
|
||||
{ MSG(FileSrvIpAddressReply) },
|
||||
{ MSG(AuthSrvIpAddressReply) },
|
||||
};
|
||||
#undef MSG
|
||||
|
||||
@ -1115,4 +1116,13 @@ void NetCliGateKeeperFileSrvIpAddressRequest (
|
||||
) {
|
||||
FileSrvIpAddressRequestTrans * trans = NEW(FileSrvIpAddressRequestTrans)(callback, param, isPatcher);
|
||||
NetTransSend(trans);
|
||||
}
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
void NetCliGateKeeperAuthSrvIpAddressRequest (
|
||||
FNetCliGateKeeperAuthSrvIpAddressRequestCallback callback,
|
||||
void * param
|
||||
) {
|
||||
AuthSrvIpAddressRequestTrans * trans = NEW(AuthSrvIpAddressRequestTrans)(callback, param);
|
||||
NetTransSend(trans);
|
||||
}
|
||||
|
Reference in New Issue
Block a user