summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2011-01-01 21:04:17 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2011-01-01 21:04:17 +0100
commit14500d43760661ffc3ffb67d929088c27fe46c64 (patch)
tree75d9471a61b00eb56b7ee75b3a785a392edb0dad /main.cpp
parent0e7f2cef26bde782a5758b5e9a3dfe20f745df8f (diff)
Implemented a simple 'ls' command for the telnet server.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index ccca2ad..f9f2d8e 100644
--- a/main.cpp
+++ b/main.cpp
@@ -4,6 +4,7 @@
#include "encoder.h"
#include "httpd.h"
#include "telnetd.h"
+#include "commands.h"
#include <iostream>
#include <vector>
@@ -16,6 +17,7 @@ int main(int argc, char **argv) {
music::init(config::vm["audist.music_root"].as<std::string>());
decoder::init();
encoder::init();
+ commands::init();
boost::asio::io_service io_service;