summaryrefslogtreecommitdiff
path: root/httpd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.cpp')
-rw-r--r--httpd.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/httpd.cpp b/httpd.cpp
index 6da58b1..92eb9e8 100644
--- a/httpd.cpp
+++ b/httpd.cpp
@@ -20,9 +20,6 @@ void HTTPConnection::handle_read(const boost::system::error_code& error, size_t
std::istream is(&buf);
HTTPRequest req(is);
- boost::asio::streambuf hdr_buf, data_buf;
- std::ostream hdr_os(&hdr_buf), data_os(&data_buf);
-
HTTPResponse res(socket);
MusicListing *ml = music::find(req.path);