diff options
Diffstat (limited to 'src/lib/http_server.h')
| -rw-r--r-- | src/lib/http_server.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/http_server.h b/src/lib/http_server.h index ca4f498e4..b07ec47b1 100644 --- a/src/lib/http_server.h +++ b/src/lib/http_server.h @@ -82,9 +82,9 @@ public: private: void handle(std::shared_ptr<Socket> socket) override; - Response request(std::vector<std::string> const& request); + Response request(std::vector<std::string> const& request, std::string const& body); Response get(std::string const& url); - Response post(std::string const& url); + Response post(std::string const& url, std::string const& body); boost::mutex _mutex; bool _playing = false; |
