PRCYCoin  2.0.0.7rc1
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 BITCOIN_HTTPRPC_H
6 #define BITCOIN_HTTPRPC_H
7 
8 #include <string>
9 #include <map>
10 
11 class HTTPRequest;
12 
16 bool StartHTTPRPC();
19 void InterruptHTTPRPC();
23 void StopHTTPRPC();
24 
28 bool StartREST();
31 void InterruptREST();
35 void StopREST();
36 
37 #endif
StopHTTPRPC
void StopHTTPRPC()
Stop HTTP RPC subsystem.
Definition: httprpc.cpp:247
StopREST
void StopREST()
Stop HTTP REST subsystem.
Definition: rest.cpp:612
StartHTTPRPC
bool StartHTTPRPC()
Start HTTP RPC subsystem.
Definition: httprpc.cpp:228
StartREST
bool StartREST()
Start HTTP REST subsystem.
Definition: rest.cpp:601
HTTPRequest
In-flight HTTP request.
Definition: httpserver.h:57
InterruptREST
void InterruptREST()
Interrupt RPC REST subsystem.
Definition: rest.cpp:608
InterruptHTTPRPC
void InterruptHTTPRPC()
Interrupt HTTP RPC subsystem.
Definition: httprpc.cpp:242