mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-09-08 10:10:49 +00:00
13 lines
304 B
C#
13 lines
304 B
C#
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;
|
|
}
|