Bitcoin
httprpc.h
Go to the documentation of this file.
1 // Copyright (c) 2015-2018 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 
5 #ifndef BITCOIN_HTTPRPC_H
6 #define BITCOIN_HTTPRPC_H
7 
8 #include <string>
9 #include <map>
10 
14 bool StartHTTPRPC();
17 void InterruptHTTPRPC();
21 void StopHTTPRPC();
22 
26 void StartREST();
29 void InterruptREST();
33 void StopREST();
34 
35 #endif
void StopHTTPRPC()
Definition: httprpc.cpp:258
void StopREST()
Definition: rest.cpp:650
void StartREST()
Definition: rest.cpp:640
bool StartHTTPRPC()
Definition: httprpc.cpp:236
void InterruptREST()
Definition: rest.cpp:646
void InterruptHTTPRPC()
Definition: httprpc.cpp:253