PRCYCoin  2.0.0.7rc1
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 BITCOIN_TORCONTROL_H
9 #define BITCOIN_TORCONTROL_H
10 
11 #include <string>
12 
13 #include <boost/function.hpp>
14 #include <boost/chrono/chrono.hpp>
15 #include <boost/thread.hpp>
16 
17 extern const std::string DEFAULT_TOR_CONTROL;
18 static const bool DEFAULT_LISTEN_ONION = true;
19 
20 void StartTorControl(boost::thread_group& threadGroup);
21 void InterruptTorControl();
22 void StopTorControl();
23 
24 #endif /* BITCOIN_TORCONTROL_H */
StopTorControl
void StopTorControl()
Definition: torcontrol.cpp:770
InterruptTorControl
void InterruptTorControl()
Definition: torcontrol.cpp:762
StartTorControl
void StartTorControl(boost::thread_group &threadGroup)
Definition: torcontrol.cpp:745
DEFAULT_TOR_CONTROL
const std::string DEFAULT_TOR_CONTROL
Functionality for communicating with Tor.
Definition: torcontrol.cpp:35