Rename to http::dynamic_body, consolidate header:

fix #284

* streambuf_body is renamed to dynamic_body
* basic_dynabuf_body is renamed to basic_dynamic_body
This commit is contained in:
Vinnie Falco
2017-04-27 18:26:21 -07:00
parent 45a2d73993
commit 21ef97d220
17 changed files with 40 additions and 73 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ int main()
// Receive and print HTTP response using beast
beast::streambuf sb;
beast::http::response<beast::http::streambuf_body> resp;
beast::http::response<beast::http::dynamic_body> resp;
beast::http::read(sock, sb, resp);
std::cout << resp;
}