Fabcoin Core  0.16.2
P2P Digital Currency
torcontrol.h
Go to the documentation of this file.
1 // Copyright (c) 2015 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
8 #ifndef FABCOIN_TORCONTROL_H
9 #define FABCOIN_TORCONTROL_H
10 
11 #include <scheduler.h>
12 
13 extern const std::string DEFAULT_TOR_CONTROL;
14 static const bool DEFAULT_LISTEN_ONION = true;
15 
16 void StartTorControl(boost::thread_group& threadGroup, CScheduler& scheduler);
17 void InterruptTorControl();
18 void StopTorControl();
19 
20 #endif /* FABCOIN_TORCONTROL_H */
void InterruptTorControl()
Definition: torcontrol.cpp:760
const std::string DEFAULT_TOR_CONTROL
Functionality for communicating with Tor.
Definition: torcontrol.cpp:31
void StopTorControl()
Definition: torcontrol.cpp:768
void StartTorControl(boost::thread_group &threadGroup, CScheduler &scheduler)
Definition: torcontrol.cpp:743