blob: 49b1c333d052d5234f07b6bc941260f45417b2fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2015-2022 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_REST_H
#define BITCOIN_REST_H
#include <string>
enum class RESTResponseFormat {
UNDEF,
BINARY,
HEX,
JSON,
};
/**
* Parse a URI to get the data format and URI without data format
* and query string.
*
* @param[out] param The strReq without the data format string and
* without the query string (if any).
* @param[in] strReq The URI to be parsed.
* @return RESTResponseFormat that was parsed from the URI.
*/
RESTResponseFormat ParseDataFormat(std::string& param, const std::string& strReq);
#endif // BITCOIN_REST_H
|