Proxy::Proxy

Constructors

Synopses

Declared in <netbase.h>

Construct an empty, invalid proxy.

Proxy();
» more...

Construct a proxy from a local unix domain socket path.

explicit
Proxy(
    std::string path,
    bool tor_stream_isolation = false);
» more...

Construct a proxy from a network service.

explicit
Proxy(
    CService const& _proxy,
    bool tor_stream_isolation = false);
» more...

Parameters

NameDescription
pathFilesystem path of the unix domain socket.
tor_stream_isolationWhether to isolate Tor streams over this proxy.
_proxyThe proxy service address.