using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace Tor { /// /// An enumerator containing the different states of an OR connection. /// public enum ORStatus { /// /// No status was not provided or the status could not be determined. /// [Description(null)] None, /// /// The OR connection has been received and is beginning the handshake process. /// [Description("NEW")] New, /// /// The OR connection has been launched and is beginning the client-side handshake process. /// [Description("LAUNCHED")] Launched, /// /// The OR connection has been connected and the handshake is complete. /// [Description("CONNECTED")] Connected, /// /// The OR connection failed. /// [Description("FAILED")] Failed, /// /// The OR connection closed. /// [Description("CLOSED")] Closed } }