* HTTPConnection::reply : to_buffers() -> to_string()

This commit is contained in:
hagen 2016-04-27 00:00:00 +00:00
parent c54f7c81c4
commit 7cf171671d
2 changed files with 26 additions and 35 deletions

View file

@ -39,8 +39,8 @@ namespace util
struct reply
{
std::vector<header> headers;
std::string status_string, content;
std::vector<boost::asio::const_buffer> to_buffers (int status);
std::string status;
std::string to_string (int code);
};
public: