General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 5m18s
Some checks failed
CI / checks (push) Failing after 5m18s
This commit is contained in:
parent
5f11d476b6
commit
6e5c985719
122 changed files with 10309 additions and 5206 deletions
16
src/type-map/reserved.ts
Normal file
16
src/type-map/reserved.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
export const RESERVED_COMMUNICATION_TYPES = [
|
||||
"Identification", "IdentificationResponse", "Register", "RegisterResponse",
|
||||
"Challenge", "ChallengeResponse", "Ping", "Pong", "Disconnect", "Redirect",
|
||||
"Shutdown", "Error", "ErrorParsing", "ErrorBadVersion", "BadRequest",
|
||||
"Unauthorized", "Forbidden", "NotFound", "TooManyRequests", "InternalServerError",
|
||||
"BadGateway", "ServiceUnavailable", "GatewayTimeout", "PipeRequest", "PipeResponse",
|
||||
"PipeAbort",
|
||||
] as const;
|
||||
|
||||
export const RESERVED_DATA_TYPES = [
|
||||
"Version", "Id", "ClientNonce", "ServerNonce", "PublicKeys", "Signature",
|
||||
"PqSignature", "Description", "Connected", "Timestamp", "Error", "ErrorParsing",
|
||||
"ErrorMessage", "Accepted", "RequirePq",
|
||||
] as const;
|
||||
|
||||
export const FIRST_USER_TYPE_ID = 32;
|
||||
Loading…
Reference in a new issue