FlagsBuilderIsolation

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

Configurability is as follows:

  • null: no action (the default).

  • true: add the flag if not present.

  • false: remove the flag if present.

e.g.

val setting = TorOption.__DNSPort.asSetting {
    auto()

    flagsIsolation {
        IsolateClientAddr = true
        IsolateSOCKSAuth = true
        KeepAliveIsolateSOCKSAuth = true
    }
    flagsIsolation {
        // Remove what was just added
        KeepAliveIsolateSOCKSAuth = false
    }
}

println(setting.items.first().optionals)
// [IsolateClientAddr, IsolateSOCKSAuth]

Properties

Link copied to clipboard
@JvmField
var IsolateClientAddr: Boolean?
Link copied to clipboard
@JvmField
var IsolateClientProtocol: Boolean?
Link copied to clipboard
@JvmField
var IsolateDestAddr: Boolean?
Link copied to clipboard
@JvmField
var IsolateDestPort: Boolean?
Link copied to clipboard
@JvmField
var IsolateSOCKSAuth: Boolean?
Link copied to clipboard
@JvmField
var KeepAliveIsolateSOCKSAuth: Boolean?

Functions

Link copied to clipboard

Declaring an id greater than or equal to 0 will add the flag.