Raven Core  3.0.0
P2P Digital Currency
httprpc.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 
6 #ifndef RAVEN_HTTPRPC_H
7 #define RAVEN_HTTPRPC_H
8 
9 #include <string>
10 #include <map>
11 
15 bool StartHTTPRPC();
18 void InterruptHTTPRPC();
22 void StopHTTPRPC();
23 
27 bool StartREST();
30 void InterruptREST();
34 void StopREST();
35 
36 #endif
void StopHTTPRPC()
Stop HTTP RPC subsystem.
Definition: httprpc.cpp:252
void StopREST()
Stop HTTP REST subsystem.
Definition: rest.cpp:592
bool StartHTTPRPC()
Start HTTP RPC subsystem.
Definition: httprpc.cpp:230
bool StartREST()
Start HTTP REST subsystem.
Definition: rest.cpp:581
void InterruptREST()
Interrupt RPC REST subsystem.
Definition: rest.cpp:588
void InterruptHTTPRPC()
Interrupt HTTP RPC subsystem.
Definition: httprpc.cpp:247