4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 // Stefan Bund <g0dil@berlios.de>
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 \brief telnetServer non-inline non-template implementation */
26 //#include "telnetServer.hh"
27 //#include "telnetServer.ih"
30 #include <boost/bind.hpp>
31 #include <senf/Utils/membind.hh>
32 #include <senf/Scheduler/Scheduler.hh>
33 #include <senf/Utils/Logger.hh>
34 #include <senf/Socket/Protocols/INet.hh>
35 #include "TelnetTerminal.hh"
38 //#include "telnetServer.mpp"
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
45 : public senf::term::TelnetTerminal
48 explicit MyTelnet(Handle handle)
49 : senf::term::BaseTelnetProtocol (handle),
50 editor_ (*this, senf::membind(&MyTelnet::executeLine, this))
52 editor_.prompt("myTelnet-with-an-endlesssly-long-prompt$");
53 editor_.defineKey(senf::term::KeyParser::Ctrl('D'),
54 senf::membind(&MyTelnet::deleteCharOrExit, this));
57 void deleteCharOrExit(senf::term::LineEditor & editor)
59 if (editor.text().empty()) {
63 senf::term::bindings::deleteChar(editor);
68 handle().facet<senf::TCPSocketProtocol>().shutdown(senf::TCPSocketProtocol::ShutRD);
71 virtual void v_setupFailed()
73 SENF_LOG(("Terminal setup failed"));
83 void executeLine(std::string const & text)
85 SENF_LOG(("Execute line: " << text));
90 senf::term::LineEditor editor_;
93 typedef senf::TCPv4ServerSocketHandle ServerHandle;
94 typedef ServerHandle::ClientHandle ClientHandle;
96 void connect(ServerHandle handle, int events)
98 if (events != senf::scheduler::FdEvent::EV_READ) {
99 senf::scheduler::terminate();
102 ClientHandle client (handle.accept());
103 SENF_LOG(("new client ..."));
105 new MyTelnet (client);
107 catch (std::exception & ex) {
108 SENF_LOG(("Client open failed: " << ex.what()));
111 SENF_LOG(("Client open failed: unknown exception"));
117 int main(int argc, char const ** argv)
119 senf::log::ConsoleTarget::instance().timeFormat("");
121 ServerHandle server (ServerHandle::Address("127.0.0.1:22344"));
122 senf::scheduler::FdEvent serverEvent ("telnetServer", boost::bind(&connect, server, _1),
123 server, senf::scheduler::FdEvent::EV_READ);
124 SENF_LOG(("Server started at " << server.local()));
126 senf::scheduler::process();
131 //-/////////////////////////////////////////////////////////////////////////////////////////////////
133 //#include "telnetServer.mpp"
139 // comment-column: 40
140 // c-file-style: "senf"
141 // indent-tabs-mode: nil
142 // ispell-local-dictionary: "american"
143 // compile-command: "scons -u telnetServer"