mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-07 15:52:06 +03:00
13 lines
268 B
C#
13 lines
268 B
C#
namespace ServiceLib.UdpTest.Tester;
|
|
|
|
public interface IUdpTest
|
|
{
|
|
public byte[] BuildUdpRequestPacket();
|
|
|
|
public bool VerifyAndExtractUdpResponse(byte[] udpResponseBytes);
|
|
|
|
public ushort GetDefaultTargetPort();
|
|
|
|
public string GetDefaultTargetHost();
|
|
}
|