Success

open class Success : Reply(source)

A more constrained Reply which ONLY holds replies that have a status starting with the digit 2, indicating a positive completion of TorCmd via the control connection.

e.g.

torCtrl.executeAsync(TorCmd.Signal.Dump)
// 250 OK

torCtrl.executeAsync(TorCmd.OnionClientAuth.Remove(someAddress))
// 251 Client credentials for "HSAddress" did not exist.

See also

Inheritors

Types

Link copied to clipboard
data object OK : Reply.Success

The most common kind of reply off of a control connection, indicating that the TorCmd has been "accepted" by tor.

Properties

Link copied to clipboard
@get:JvmName(name = "isOK")
val isOK: Boolean
Link copied to clipboard
@JvmField
val message: String
Link copied to clipboard
@JvmField
val status: String

Functions

Link copied to clipboard
operator fun component1(): String
Link copied to clipboard
operator fun component2(): String