From a0f327140c4068afd46b264d24f767c4dd3d0f40 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Thu, 4 Aug 2011 21:54:38 +0200 Subject: Implemented JSON list handler. --- main.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index 6fa7504..5d5af1d 100644 --- a/main.cpp +++ b/main.cpp @@ -6,6 +6,7 @@ #include "telnetd.h" #include "http_static.h" +#include "http_json.h" #include #include @@ -39,6 +40,9 @@ int main(int argc, char **argv) { HTTP::Static static_files("static"); httpd.add_handler("static", static_files); httpd.add_handler("", static_files); + + HTTP::JSON http_json; + httpd.add_handler("list", http_json); telnet::Server telnetd(io_service, tcp::endpoint(tcp::v6(), config::vm["audist.telnetd_port"].as())); -- cgit v1.2.3