Change telnetd configuration to use defaults

Currently, this configuration doesn't seem to be used yet, but
regardless we'll update the settings to use RTEMS defaults.
This commit is contained in:
Brendan Chandler
2021-02-16 15:12:28 -06:00
parent af88e9f6c6
commit 6965f86298
+3 -2
View File
@@ -882,13 +882,14 @@ telnet_pseudoIocsh(char *name, __attribute__((unused))void *arg)
/*
* Telnet daemon configuration
* 0 or NULL for most fields in thsi struct indicate default values to RTEMS.
*/
rtems_telnetd_config_table rtems_telnetd_config = {
.command = SHELL_ENTRY,
.arg = NULL,
.priority = 99, // if RTEMS_NETWORK and .priority == 0 bsd_network_prio should be used ...
.priority = 0,
.stack_size = 0,
.client_maximum = 5, // should be 1, on RTEMS and Epics it makes only sense for one connection a time
.client_maximum = 0,
.login_check = NULL,
.keep_stdio = false
};