Packets/80211Bundle: Complete radiotap dump (incl. unit-test)
[senf.git] / senf / Utils / Termlib / telnetServer.cc
index c9aeb7f..1382210 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 
 // Custom includes
 #include <boost/bind.hpp>
-#include "../../Utils/membind.hh"
-#include "../../Scheduler/Scheduler.hh"
-#include "../Logger.hh"
-#include "../../Socket/Protocols/INet.hh"
+#include <senf/Utils/membind.hh>
+#include <senf/Scheduler/Scheduler.hh>
+#include <senf/Utils/Logger.hh>
+#include <senf/Socket/Protocols/INet.hh>
 #include "TelnetTerminal.hh"
 #include "Editor.hh"
 
 ///////////////////////////////cc.p////////////////////////////////////////
 
 namespace {
-    
-    class MyTelnet 
+
+    class MyTelnet
         : public senf::term::TelnetTerminal
     {
     public:
-        explicit MyTelnet(Handle handle) 
-            : senf::term::BaseTelnetProtocol (handle), 
-              editor_ (*this, senf::membind(&MyTelnet::executeLine, this)) 
+        explicit MyTelnet(Handle handle)
+            : senf::term::BaseTelnetProtocol (handle),
+              editor_ (*this, senf::membind(&MyTelnet::executeLine, this))
             {
                 editor_.prompt("myTelnet-with-an-endlesssly-long-prompt$");
-                editor_.defineKey(senf::term::KeyParser::Ctrl('D'), 
+                editor_.defineKey(senf::term::KeyParser::Ctrl('D'),
                                   senf::membind(&MyTelnet::deleteCharOrExit, this));
             }