namespace Robust.Shared.Network
{
public enum ClientConnectionState : byte
{
///
/// We are not connected and not trying to get connected either. Quite lonely huh.
///
NotConnecting,
///
/// Resolving the DNS query for the address of the server.
///
ResolvingHost,
///
/// Attempting to establish a connection to the server.
///
EstablishingConnection,
///
/// Connection established, going through regular handshake business.
///
Handshake,
///
/// Connection is solid and handshake is done go wild.
///
Connected
}
}