using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace Tor { /// /// An enumerator containing the possible values specified against the BUILD_FLAGS parameter. /// [Flags] public enum CircuitBuildFlags : int { /// /// No build flags were specified. /// [Description(null)] None = 0x000, /// /// The circuit is a one hop circuit used to fetch directory information. /// [Description("ONEHOP_TUNNEL")] OneHopTunnel = 0x001, /// /// The circuit will not be used for client traffic. /// [Description("IS_INTERNAL")] IsInternal = 0x002, /// /// The circuit only includes high capacity relays. /// [Description("NEED_CAPACITY")] NeedCapacity = 0x004, /// /// The circuit only includes relays with high uptime. /// [Description("NEED_UPTIME")] NeedUpTime = 0x008, } }