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

Pref exception

Fix

Add Minecraft Bedrock Edition Test
2026-04-07 18:30:40 +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();
}