You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
namespace STUN
|
|
{
|
|
public enum STUNQueryError
|
|
{
|
|
/// <summary>
|
|
/// Indicates querying was successful.
|
|
/// </summary>
|
|
Success,
|
|
|
|
/// <summary>
|
|
/// Indicates the server responsed with error.
|
|
/// In this case you have check <see cref="STUNQueryResult.ServerError"/> and <see cref="STUNQueryResult.ServerErrorPhrase"/> in query result.
|
|
/// </summary>
|
|
ServerError,
|
|
|
|
/// <summary>
|
|
/// Indicates the server responsed a bad\wrong\.. message. This error will returned in many cases.
|
|
/// </summary>
|
|
BadResponse,
|
|
|
|
/// <summary>
|
|
/// Indicates the server responsed a message that contains a different transcation ID
|
|
/// </summary>
|
|
BadTransactionID,
|
|
|
|
/// <summary>
|
|
/// Indicates the server didn't response a request within a time interval
|
|
/// </summary>
|
|
Timedout,
|
|
/// <summary>
|
|
/// Indicates the server did not support nat detection
|
|
/// </summary>
|
|
NotSupported
|
|
}
|
|
}
|