artiClientSetDormant function

void artiClientSetDormant(
  1. Pointer<Void> client,
  2. bool softMode
)

Sets the Tor client to dormant mode.

Implementation

void artiClientSetDormant(Pointer<Void> client, bool softMode) {
  _bindings.arti_client_set_dormant(client, softMode ? true : false);
}