Merge pull request #5484
7c8e4c5
Make pass-by-ref arguments const. (Daniel Kraft)
This commit is contained in:
commit
4444b879bc
2 changed files with 16 additions and 16 deletions
28
src/rest.cpp
28
src/rest.cpp
|
@ -90,8 +90,8 @@ static bool ParseHashStr(const string& strReq, uint256& v)
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool rest_headers(AcceptedConnection* conn,
|
static bool rest_headers(AcceptedConnection* conn,
|
||||||
string& strReq,
|
const std::string& strReq,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun)
|
bool fRun)
|
||||||
{
|
{
|
||||||
vector<string> params;
|
vector<string> params;
|
||||||
|
@ -153,8 +153,8 @@ static bool rest_headers(AcceptedConnection* conn,
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool rest_block(AcceptedConnection* conn,
|
static bool rest_block(AcceptedConnection* conn,
|
||||||
string& strReq,
|
const std::string& strReq,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun,
|
bool fRun,
|
||||||
bool showTxDetails)
|
bool showTxDetails)
|
||||||
{
|
{
|
||||||
|
@ -211,24 +211,24 @@ static bool rest_block(AcceptedConnection* conn,
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool rest_block_extended(AcceptedConnection* conn,
|
static bool rest_block_extended(AcceptedConnection* conn,
|
||||||
string& strReq,
|
const std::string& strReq,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun)
|
bool fRun)
|
||||||
{
|
{
|
||||||
return rest_block(conn, strReq, mapHeaders, fRun, true);
|
return rest_block(conn, strReq, mapHeaders, fRun, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool rest_block_notxdetails(AcceptedConnection* conn,
|
static bool rest_block_notxdetails(AcceptedConnection* conn,
|
||||||
string& strReq,
|
const std::string& strReq,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun)
|
bool fRun)
|
||||||
{
|
{
|
||||||
return rest_block(conn, strReq, mapHeaders, fRun, false);
|
return rest_block(conn, strReq, mapHeaders, fRun, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool rest_tx(AcceptedConnection* conn,
|
static bool rest_tx(AcceptedConnection* conn,
|
||||||
string& strReq,
|
const std::string& strReq,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun)
|
bool fRun)
|
||||||
{
|
{
|
||||||
vector<string> params;
|
vector<string> params;
|
||||||
|
@ -280,8 +280,8 @@ static bool rest_tx(AcceptedConnection* conn,
|
||||||
static const struct {
|
static const struct {
|
||||||
const char* prefix;
|
const char* prefix;
|
||||||
bool (*handler)(AcceptedConnection* conn,
|
bool (*handler)(AcceptedConnection* conn,
|
||||||
string& strURI,
|
const std::string& strURI,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun);
|
bool fRun);
|
||||||
} uri_prefixes[] = {
|
} uri_prefixes[] = {
|
||||||
{"/rest/tx/", rest_tx},
|
{"/rest/tx/", rest_tx},
|
||||||
|
@ -291,8 +291,8 @@ static const struct {
|
||||||
};
|
};
|
||||||
|
|
||||||
bool HTTPReq_REST(AcceptedConnection* conn,
|
bool HTTPReq_REST(AcceptedConnection* conn,
|
||||||
string& strURI,
|
const std::string& strURI,
|
||||||
map<string, string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun)
|
bool fRun)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -227,8 +227,8 @@ extern json_spirit::Value reconsiderblock(const json_spirit::Array& params, bool
|
||||||
|
|
||||||
// in rest.cpp
|
// in rest.cpp
|
||||||
extern bool HTTPReq_REST(AcceptedConnection *conn,
|
extern bool HTTPReq_REST(AcceptedConnection *conn,
|
||||||
std::string& strURI,
|
const std::string& strURI,
|
||||||
std::map<std::string, std::string>& mapHeaders,
|
const std::map<std::string, std::string>& mapHeaders,
|
||||||
bool fRun);
|
bool fRun);
|
||||||
|
|
||||||
#endif // BITCOIN_RPCSERVER_H
|
#endif // BITCOIN_RPCSERVER_H
|
||||||
|
|
Loading…
Reference in a new issue