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]
Content copied to clipboard