20 lines
518 B
C#
20 lines
518 B
C#
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.Threading;
|
|
global using System.Threading.Tasks;
|
|
using System.Net;
|
|
using System.Net.Security;
|
|
|
|
namespace Meum.Core;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly List<SslApplicationProtocol> ApplicationProtocols =
|
|
[
|
|
new("Meum-1")
|
|
];
|
|
|
|
public const int ServerPortDefault = 9320;
|
|
public const long DefaultStreamErrorCode = 0xA;
|
|
public const long DefaultCloseErrorCode = 0xB;
|
|
} |