TorCmd

sealed class TorCmd<Success : Any> : EnqueuedJob.Argument(source)

Commands to interact with tor via its control connection, as described in control-spec.

Commands are separated into 2 categories, Privileged and Unprivileged. This is unique to kmp-tor only, not tor. The purpose is to allow abstractions to be built on top of a control connection implementation (such as kmp-tor:runtime) that manage the connection and allow for pass-through of Unprivileged commands while internally using Privileged commands to set up and maintain the connection.

See also

Inheritors

Types

Link copied to clipboard
data object Config
Link copied to clipboard
data object Hs
Link copied to clipboard
data object Info
Link copied to clipboard
data object Onion
Link copied to clipboard
data object OnionClientAuth
Link copied to clipboard
data object Ownership
Link copied to clipboard
sealed class Privileged<Success : Any>(keyword: String) : TorCmd<Success>

A TorCmd whose use is restricted to only that of the control connection, and not with TorRuntime.

Link copied to clipboard
Link copied to clipboard
sealed class Unprivileged<Success : Any>(keyword: String) : TorCmd<Success>

A TorCmd that is capable of being utilized with both the control connection and TorRuntime (which passes it through to the underlying control connection).

Properties

Link copied to clipboard
@JvmField
val keyword: String