Fabcoin Core  0.16.2
P2P Digital Currency
httprpc.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 
5 #ifndef FABCOIN_HTTPRPC_H
6 #define FABCOIN_HTTPRPC_H
7 
8 #include <string>
9 #include <map>
10 
14 bool StartHTTPRPC();
17 void InterruptHTTPRPC();
21 void StopHTTPRPC();
22 
26 bool StartREST();
29 void InterruptREST();
33 void StopREST();
34 
35 #endif
void StopHTTPRPC()
Stop HTTP RPC subsystem.
Definition: httprpc.cpp:263
void StopREST()
Stop HTTP REST subsystem.
Definition: rest.cpp:647
bool StartHTTPRPC()
Start HTTP RPC subsystem.
Definition: httprpc.cpp:241
bool StartREST()
Start HTTP REST subsystem.
Definition: rest.cpp:636
void InterruptREST()
Interrupt RPC REST subsystem.
Definition: rest.cpp:643
void InterruptHTTPRPC()
Interrupt HTTP RPC subsystem.
Definition: httprpc.cpp:258