UTAP / APHTTP

simple web framework over C++
MIT License
21 stars 10 forks source link

Add ability to upload binary files #2

Open hadisfr opened 5 years ago

hadisfr commented 5 years ago

The current implementation (v 1.0.1) only supports uploading text files due to limitations of std::string.
It could be a good idea to add ability to upload binary files, but I think this needs a lot of work and it may be needed to completely rewrite some part of request parser and use C array-like string or sth else instead of C++ std::string.