BuilderScopePort

A DSL builder scope for configuring TorOption containing the attribute(s) TorOption.Attribute.UNIX_SOCKET and/or TorOption.Attribute.PORT.

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard

A DSL builder scope for TorOption.__ControlPort and TorOption.ControlPort. Because kmp-tor is built entirely around tor's control connection APIs, disable is made unavailable and the argument is always initialized with a value of auto.

Link copied to clipboard

A DSL builder scope for TorOption.__DNSPort and TorOption.DNSPort.

Link copied to clipboard

Configure the desired TorOption with Isolation Flags, as described in tor-man#SocksPort.

Link copied to clipboard

Configure the desired TorOption with Socks Flags, as described in tor-man#OtherSocksPortFlags.

Link copied to clipboard

Configure the desired TorOption with Unix Flags, as described in tor-man#OtherSocksPortFlags and tor-man#ControlPort.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
@JvmField
protected var argument: String

The argument string for this BuilderScope, the result of which is used as the LineItem.argument. Is initialized with whatever TorOption.default is.

Link copied to clipboard
@JvmField
val option: TorOption

The TorOption being configured for this BuilderScope.

Functions

Link copied to clipboard
protected open fun auto(): BuilderScopePort

Sets the argument to auto, indicating that tor should pick a port value for this TorOption.

Link copied to clipboard
protected open fun disable(): BuilderScopePort

Sets the argument to 0, indicating that tor will not utilize this TorOption.

Link copied to clipboard

Adds isolation flags to the TorSetting.LineItem.optionals of this builder result.

Link copied to clipboard

Adds socks flags to the TorSetting.LineItem.optionals of this builder result.

Link copied to clipboard

Adds unix flags to the TorSetting.LineItem.optionals of this builder result.

Link copied to clipboard
protected open fun port(value: Port.Ephemeral): BuilderScopePort

Sets the argument to the specified port.

Link copied to clipboard
protected open fun reassignable(allow: Boolean): BuilderScopePort

In the event a configured Port is unavailable on the host device, tor will fail to start.

Link copied to clipboard
protected open fun unixSocket(value: File): BuilderScopePort

For a TorOption which can be configured to use Unix Sockets, containing the attribute TorOption.Attribute.UNIX_SOCKET.