From 83deeeafe2e81b42ff485e4582d4c1ac00872f50 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Tue, 28 Dec 2010 21:08:58 +0100 Subject: Added a simple interface to transcoding by specifying the 'decoder' and 'encoder' query arguments. --- httpd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'httpd.cpp') diff --git a/httpd.cpp b/httpd.cpp index 92eb9e8..203f4e0 100644 --- a/httpd.cpp +++ b/httpd.cpp @@ -27,7 +27,7 @@ void HTTPConnection::handle_read(const boost::system::error_code& error, size_t res.code = 200; res.status = "OK"; - ml->render(res); + ml->render(req, res); } else { res.code = 404; res.status = "Not Found"; -- cgit v1.2.3