Fabcoin Core  0.16.2
P2P Digital Currency
Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
TorController Class Reference

Controller that connects to Tor control socket, authenticate, then create and maintain an ephemeral hidden service. More...

Collaboration diagram for TorController:
[legend]

Public Member Functions

 TorController (struct event_base *base, const std::string &target)
 
 ~TorController ()
 
fs::path GetPrivateKeyFile ()
 Get name fo file to store private key in. More...
 
void Reconnect ()
 Reconnect, after getting disconnected. More...
 

Private Member Functions

void add_onion_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for ADD_ONION result. More...
 
void auth_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for AUTHENTICATE result. More...
 
void authchallenge_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for AUTHCHALLENGE result. More...
 
void protocolinfo_cb (TorControlConnection &conn, const TorControlReply &reply)
 Callback for PROTOCOLINFO result. More...
 
void connected_cb (TorControlConnection &conn)
 Callback after successful connection. More...
 
void disconnected_cb (TorControlConnection &conn)
 Callback after connection lost or failed connection attempt. More...
 

Static Private Member Functions

static void reconnect_cb (evutil_socket_t fd, short what, void *arg)
 Callback for reconnect timer. More...
 

Private Attributes

struct event_base * base
 
std::string target
 
TorControlConnection conn
 
std::string private_key
 
std::string service_id
 
bool reconnect
 
struct event * reconnect_ev
 
float reconnect_timeout
 
CService service
 
std::vector< uint8_t > cookie
 Cookie for SAFECOOKIE auth. More...
 
std::vector< uint8_t > clientNonce
 ClientNonce for SAFECOOKIE auth. More...
 

Detailed Description

Controller that connects to Tor control socket, authenticate, then create and maintain an ephemeral hidden service.

Definition at line 411 of file torcontrol.cpp.

Constructor & Destructor Documentation

TorController::TorController ( struct event_base *  base,
const std::string &  target 
)

Definition at line 454 of file torcontrol.cpp.

Here is the call graph for this function:

TorController::~TorController ( )

Definition at line 475 of file torcontrol.cpp.

Here is the call graph for this function:

Member Function Documentation

void TorController::add_onion_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for ADD_ONION result.

Definition at line 486 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::auth_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for AUTHENTICATE result.

Definition at line 521 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::authchallenge_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for AUTHCHALLENGE result.

Definition at line 575 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::connected_cb ( TorControlConnection conn)
private

Callback after successful connection.

Definition at line 684 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::disconnected_cb ( TorControlConnection conn)
private

Callback after connection lost or failed connection attempt.

Definition at line 692 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

fs::path TorController::GetPrivateKeyFile ( )

Get name fo file to store private key in.

Definition at line 721 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::protocolinfo_cb ( TorControlConnection conn,
const TorControlReply reply 
)
private

Callback for PROTOCOLINFO result.

Definition at line 610 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::Reconnect ( )

Reconnect, after getting disconnected.

Definition at line 710 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void TorController::reconnect_cb ( evutil_socket_t  fd,
short  what,
void *  arg 
)
staticprivate

Callback for reconnect timer.

Definition at line 726 of file torcontrol.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

Member Data Documentation

struct event_base* TorController::base
private

Definition at line 423 of file torcontrol.cpp.

std::vector<uint8_t> TorController::clientNonce
private

ClientNonce for SAFECOOKIE auth.

Definition at line 435 of file torcontrol.cpp.

TorControlConnection TorController::conn
private

Definition at line 425 of file torcontrol.cpp.

std::vector<uint8_t> TorController::cookie
private

Cookie for SAFECOOKIE auth.

Definition at line 433 of file torcontrol.cpp.

std::string TorController::private_key
private

Definition at line 426 of file torcontrol.cpp.

bool TorController::reconnect
private

Definition at line 428 of file torcontrol.cpp.

struct event* TorController::reconnect_ev
private

Definition at line 429 of file torcontrol.cpp.

float TorController::reconnect_timeout
private

Definition at line 430 of file torcontrol.cpp.

CService TorController::service
private

Definition at line 431 of file torcontrol.cpp.

std::string TorController::service_id
private

Definition at line 427 of file torcontrol.cpp.

std::string TorController::target
private

Definition at line 424 of file torcontrol.cpp.


The documentation for this class was generated from the following file: