Revisions

This commit is contained in:
2026-08-09 03:54:28 +03:00
parent 2028db671f
commit 3b55d8d2f8
37 changed files with 1743 additions and 230 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace Esiur.Protocol;
/// <summary>
/// Shared defaults for the Esiur EP protocol.
/// </summary>
public static class EpProtocol
{
/// <summary>
/// Default native EP port used when a server or endpoint does not specify one.
/// </summary>
public const ushort DefaultPort = 51018;
}