You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
22 lines
455 B
C#
22 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace STUN
|
|
{
|
|
public enum STUNErrorCodes : ushort
|
|
{
|
|
BadRequest = 400,
|
|
Unauthorized = 401,
|
|
UnknownAttribute = 420,
|
|
StaleCredentials = 430,
|
|
IntegrityCheckFailure = 431,
|
|
MissingUsername = 432,
|
|
UseTLS = 433,
|
|
ServerError = 500,
|
|
GloablFailure = 600,
|
|
}
|
|
}
|