namespace STUN
{
public enum STUNQueryError
{
///
/// Indicates querying was successful.
///
Success,
///
/// Indicates the server responsed with error.
/// In this case you have check and in query result.
///
ServerError,
///
/// Indicates the server responsed a bad\wrong\.. message. This error will returned in many cases.
///
BadResponse,
///
/// Indicates the server responsed a message that contains a different transcation ID
///
BadTransactionID,
///
/// Indicates the server didn't response a request within a time interval
///
Timedout,
///
/// Indicates the server did not support nat detection
///
NotSupported
}
}