mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-30 17:54:08 +00:00
Some checks failed
release Linux / build (push) Has been cancelled
release Linux / build and release deb x64 & arm64 (push) Has been cancelled
release Linux / build and release rpm x64 & arm64 (push) Has been cancelled
release Linux / build and release rpm riscv64 (push) Has been cancelled
release macOS / build (push) Has been cancelled
release Windows desktop (Avalonia UI) / build (push) Has been cancelled
release Windows / build (push) Has been cancelled
release Linux / release-zip (push) Has been cancelled
release macOS / release-zip (push) Has been cancelled
release macOS / package and release macOS dmg (push) Has been cancelled
release Windows desktop (Avalonia UI) / release-zip (push) Has been cancelled
release Windows / release-zip (push) Has been cancelled
12 lines
268 B
C#
12 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();
|
|
}
|