summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/telnetd01 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* telnetd: Add server port to configurationSebastian Huber2018-10-111-1/+1
| | | | Close #3543.
* telnetd: Create sessions at startSebastian Huber2018-10-112-5/+6
| | | | Update #3543.
* telnetd: Remove keep stdio featureSebastian Huber2018-10-103-0/+154
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.