You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
727 B
25 lines
727 B
using LitJson;
|
|
using SimpleHttpServer;
|
|
using ProtoCSStruct;
|
|
|
|
namespace Operation
|
|
{
|
|
public class InstallData
|
|
{
|
|
public static int OnInstallDataHttpReq(string httpApiCmd, JsonData jsonData, HttpResponse rsp, HttpRequest request, HttpQueryParams query, uint httpContextId)
|
|
{
|
|
SSGmPlayerPhoneInfo req = new SSGmPlayerPhoneInfo();
|
|
|
|
foreach (var a in query.m_map)
|
|
{
|
|
req.Playerphoneinfokey.Add(a.Key);
|
|
req.Playerphoneinfovalue.Add(a.Value);
|
|
};
|
|
|
|
// cluster层的服务器必须知道worldserverid才可以和world通信
|
|
//OperationServerUtils.GetPacketSender().SendToWorldServer((int)SSGameMsgID.GmPlayerPhoneInfo, ref req, request.UniqueID, OperationServerUtils.GetAppID());
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|