18 lines
544 B
C#
18 lines
544 B
C#
using System.Net;
|
|
|
|
namespace LiteNetLib.Layers
|
|
{
|
|
public abstract class PacketLayerBase
|
|
{
|
|
public readonly int ExtraPacketSizeForLayer;
|
|
|
|
protected PacketLayerBase(int extraPacketSizeForLayer)
|
|
{
|
|
ExtraPacketSizeForLayer = extraPacketSizeForLayer;
|
|
}
|
|
|
|
public abstract void ProcessInboundPacket(ref IPEndPoint endPoint, ref byte[] data, ref int length);
|
|
public abstract void ProcessOutBoundPacket(ref IPEndPoint endPoint, ref byte[] data, ref int offset, ref int length);
|
|
}
|
|
}
|