LineItem

Holder of a single configuration line item.

e.g.

|    option    | argument |            optionals             |
__SocksPort      9050       OnionTrafficOnly IsolateDestPort
DisableNetwork   1
RunAsDaemon      0

Properties

Link copied to clipboard
@JvmField
val argument: String

The argument for this TorOption. Will be non-blank and single line.

Link copied to clipboard
@JvmField
val isDirectory: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.DIRECTORY.

Link copied to clipboard
@JvmField
val isFile: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.FILE.

Link copied to clipboard
@JvmField
val isHiddenService: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.HIDDEN_SERVICE.

Link copied to clipboard
@JvmField
val isNonPersistent: Boolean

If the LineItem is a TorOption that is "Non-Persistent", indicative of the TorOption.name starting with two _ characters.

Link copied to clipboard
@JvmField
val isPort: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.PORT, and is configured with an argument of 0, auto, or a Port.value.

Link copied to clipboard
@JvmField
val isPortAuto: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.PORT, and is configured as auto.

Link copied to clipboard
@JvmField
val isPortDisabled: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.PORT, and is configured as 0.

Link copied to clipboard
@JvmField
val isPortDistinct: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.PORT, and is configured with a distinct port, such as 9050 (i.e. not 0 or auto).

Link copied to clipboard
@JvmField
val isUnixSocket: Boolean

If this LineItem is a TorOption with the attribute TorOption.Attribute.UNIX_SOCKET, and is configured as such.

Link copied to clipboard
@JvmField
val option: TorOption

The TorOption for this single line expression.

Link copied to clipboard
@JvmField
val optionals: Set<String>

Optional things for this TorOption. They are appended to the option and argument string using a single space deliminator.