]> Git Repo - VerusCoin.git/blame_incremental - src/torcontrol.h
Merge pull request #97 from miketout/dev
[VerusCoin.git] / src / torcontrol.h
... / ...
CommitLineData
1// Copyright (c) 2015 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or https://www.opensource.org/licenses/mit-license.php .
4
5/**
6 * Functionality for communicating with Tor.
7 */
8#ifndef BITCOIN_TORCONTROL_H
9#define BITCOIN_TORCONTROL_H
10
11#include "scheduler.h"
12
13extern const std::string DEFAULT_TOR_CONTROL;
14static const bool DEFAULT_LISTEN_ONION = true;
15
16void StartTorControl(boost::thread_group& threadGroup, CScheduler& scheduler);
17void InterruptTorControl();
18void StopTorControl();
19
20#endif /* BITCOIN_TORCONTROL_H */
This page took 0.023946 seconds and 5 git commands to generate.