From 61d800053ed6cfad5f979fa9bec6e570cd7f5100 Mon Sep 17 00:00:00 2001 From: yhirose Date: Tue, 12 Dec 2017 22:22:10 -0500 Subject: [PATCH] Updated README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2708834..737382d 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ svr.set_error_handler([](const auto& req, auto& res) { }); ``` -### `multipart/form-data` POST data +### 'multipart/form-data' POST data ```cpp svr.post("/multipart", [&](const auto& req, auto& res) { @@ -135,6 +135,10 @@ std::shared_ptr res = ); ``` +![progress](https://user-images.githubusercontent.com/236374/33138910-495c4ecc-cf86-11e7-8693-2fc6d09615c4.gif) + +This feature was contributed by [underscorediscovery](https://github.com/yhirose/cpp-httplib/pull/23). + ### Range (HTTP/1.1) ```cpp @@ -148,10 +152,6 @@ auto res = cli.get("/range/32", headers); // res->body should be "bcdefghijk". ``` -![progress](https://user-images.githubusercontent.com/236374/33138910-495c4ecc-cf86-11e7-8693-2fc6d09615c4.gif) - -This feature was contributed by [underscorediscovery](https://github.com/yhirose/cpp-httplib/pull/23). - OpenSSL Support ---------------