danicoin/src/HTTP/HttpResponse.h

45 lines
1.1 KiB
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-09-15 12:46:31 +00:00
#pragma once
#include <ostream>
#include <string>
#include <map>
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2014-09-15 12:46:31 +00:00
class HttpResponse {
public:
enum HTTP_STATUS {
STATUS_200,
STATUS_404,
STATUS_500
};
HttpResponse();
void setStatus(HTTP_STATUS s);
void addHeader(const std::string& name, const std::string& value);
void setBody(const std::string& b);
const std::map<std::string, std::string>& getHeaders() const { return headers; }
HTTP_STATUS getStatus() const { return status; }
const std::string& getBody() const { return body; }
private:
friend std::ostream& operator<<(std::ostream& os, const HttpResponse& resp);
std::ostream& printHttpResponse(std::ostream& os) const;
HTTP_STATUS status;
std::map<std::string, std::string> headers;
std::string body;
};
inline std::ostream& operator<<(std::ostream& os, const HttpResponse& resp) {
return resp.printHttpResponse(os);
}
2015-05-27 12:08:46 +00:00
} //namespace CryptoNote