mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 04:25:45 +00:00
9 lines
No EOL
267 B
C#
9 lines
No EOL
267 B
C#
namespace ServiceLib.Services.Udp.Test;
|
|
|
|
public interface IUdpTest
|
|
{
|
|
public byte[] BuildUdpRequestPacket();
|
|
public bool VerifyAndExtractUdpResponse(byte[] udpResponseBytes);
|
|
public ushort GetDefaultTargetPort();
|
|
public string GetDefaultTargetHost();
|
|
} |