2015-08-08 14:21:09 +00:00
|
|
|
|
using System;
|
2015-06-05 21:07:37 +00:00
|
|
|
|
using xClient.Core.Networking;
|
2015-05-10 17:02:10 +00:00
|
|
|
|
using xClient.Core.Packets;
|
|
|
|
|
|
|
|
|
|
namespace xClient.Core.ReverseProxy.Packets
|
|
|
|
|
{
|
2015-08-08 14:21:09 +00:00
|
|
|
|
[Serializable]
|
2015-05-10 17:02:10 +00:00
|
|
|
|
public class ReverseProxyDisconnect : IPacket
|
|
|
|
|
{
|
|
|
|
|
public int ConnectionId { get; set; }
|
|
|
|
|
|
|
|
|
|
public ReverseProxyDisconnect(int connectionId)
|
|
|
|
|
{
|
|
|
|
|
this.ConnectionId = connectionId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ReverseProxyDisconnect()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Execute(Client client)
|
|
|
|
|
{
|
2015-05-19 01:53:25 +00:00
|
|
|
|
client.Send(this);
|
2015-05-10 17:02:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|