NahidaImpact/NahidaImpact.Kcp/IKcpTransport.cs

23 lines
842 B
C#
Raw Permalink Normal View History

2024-01-04 13:48:39 +00:00
using System.Net;
using System.Net.Sockets;
namespace NahidaImpact.Kcp
{
/// <summary>
/// A transport to send and receive packets.
/// </summary>
public interface IKcpTransport
{
/// <summary>
/// Send a packet into the transport.
/// </summary>
/// <param name="packet">The content of the packet.</param>
/// <param name="remoteEndpoint">The remote endpoint</param>
/// <param name="cancellationToken">A token to cancel this operation.</param>
/// <returns>A <see cref="ValueTask"/> that completes when the packet is sent.</returns>
ValueTask SendPacketAsync(Memory<byte> packet, IPEndPoint remoteEndpoint, CancellationToken cancellationToken);
void SetCallbacks(int handshakeSize, Func<UdpReceiveResult, ValueTask> handshakeHandler);
}
}