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