using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace Tor { /// /// An enumerator containing the possible statuses of a circuit. /// public enum CircuitStatus { /// /// The circuit ID was assigned to a new circuit. /// [Description("LAUNCHED")] Launched, /// /// The circuit has completed all hops and can accept streams. /// [Description("BUILT")] Built, /// /// The circuit has been extended with an additional hop. /// [Description("EXTENDED")] Extended, /// /// The circuit is closed because it was not built. /// [Description("FAILED")] Failed, /// /// The circuit is closed. /// [Description("CLOSED")] Closed } }