Commit 6525344f authored by Morosko's avatar Morosko Committed by Davis E. King

Make http_client compile in C++11 and above (#714)

* Make http_client compile in C++11 and above

* Optimize file reading
parent fc927746
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
namespace dlib namespace dlib
{ {
typedef dlib::shared_ptr<dlib::timeout> timeout_ptr; typedef std::shared_ptr<dlib::timeout> timeout_ptr;
#ifdef _MSC_VER #ifdef _MSC_VER
...@@ -456,7 +456,7 @@ namespace dlib ...@@ -456,7 +456,7 @@ namespace dlib
std::ifstream in(si->second.c_str()); std::ifstream in(si->second.c_str());
postBody << "--" << mime_boundary << "\r\n" postBody << "--" << mime_boundary << "\r\n"
"Content-Disposition: form-data; name=\"" << ci->first << "\"; filename=\"" << get_basename(si->second) << "\"\r\n\r\n" "Content-Disposition: form-data; name=\"" << ci->first << "\"; filename=\"" << get_basename(si->second) << "\"\r\n\r\n"
<< in << "\r\n"; << in.rdbuf() << "\r\n";
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment