summaryrefslogtreecommitdiff
path: root/testsuites/libtests/telnetd01/init.c (follow)
AgeCommit message (Collapse)Author
2018-10-11telnetd: Create sessions at startSebastian Huber
Update #3543.
2018-10-10telnetd: Remove keep stdio featureSebastian Huber
The Telnet service started via rtems_telnetd_start() had a keep stdio feature. This just created a task and executed the command function in a loop. For this kind of service we do not library support. This can be done by an application task on its own. Remove this feature and provide only the real Telnet server functionality. Use syslog() for error and status messages. Add test program for the Telnet server. Close #3542.