blob: d8078ec12cb8a1615e4af34379cab0a33ca08d41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using KKSG;
using XUtliPoolLib;
namespace XMainClient
{
internal class Process_RpcC2G_QueryClientIp
{
public static void OnReply(QueryClientIpArg oArg, QueryClientIpRes oRes)
{
XChatDocument.m_ClientIP = oRes.ip;
RpcC2A_AudioAuthKey rpcC2A_AudioAuthKey = new RpcC2A_AudioAuthKey();
rpcC2A_AudioAuthKey.oArg.ip = oRes.ip;
rpcC2A_AudioAuthKey.oArg.open_id = "63662733";
XSingleton<XClientNetwork>.singleton.Send(rpcC2A_AudioAuthKey);
}
public static void OnTimeout(QueryClientIpArg oArg)
{
}
}
}
|