mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
16 lines
414 B
C#
16 lines
414 B
C#
using System;
|
|
using System.Net.Sockets;
|
|
|
|
namespace HISP.Server.Network
|
|
{
|
|
public interface ITransport
|
|
{
|
|
public string Name { get; }
|
|
public bool Disconnected { get; }
|
|
public string Ip { get; }
|
|
|
|
public void Accept(Socket socket, Action<byte[]> onReceive, Action onDisconnect);
|
|
public void Send(byte[] data);
|
|
public void Disconnect();
|
|
}
|
|
}
|