summaryrefslogtreecommitdiffstats
path: root/src/response.h
blob: 6f4d6f221a7903d63600c4c89b292c4fdd498a16 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef RESPONSE_H
#define REPSONSE_H

#include <string>
#include "ocelot.h"

const std::string response(const std::string &body, client_opts_t &client_opts);
const std::string response_head(size_t content_length, client_opts_t &client_opts);
const std::string error(const std::string &err, client_opts_t &client_opts);
const std::string warning(const std::string &msg);
#endif