v2rayN/v2rayN/ServiceLib/Services/Udp/Test/IUdpTest.cs
DHR60 d9d15c3694 UDP Test
Increases UDP test timeout

Pref exception

Fix

Add Minecraft Bedrock Edition Test
2026-03-31 18:47:42 +08:00

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();
}