The latest development version of this page may be more current than this released 1.14.1 version.
CONFIG_SHELL_TELNET_LINE_BUF_SIZE

Telnet line buffer size

Type: int

Help

This option can be used to modify the size of the buffer storing shell output line, prior to sending it through the network. Of course an output line can be longer than such size, it just means sending it will start as soon as it reaches this size. It really depends on what type of output is expected. A lot of short lines: better reduce this value. On the contrary, raise it.

Direct dependencies

SHELL_BACKEND_TELNET && SHELL_BACKENDS && SHELL

(Includes any dependencies from if’s and menus.)

Kconfig definition

At subsys/shell/Kconfig.backends:186

Included via Kconfig:10Kconfig.zephyr:39subsys/Kconfig:26subsys/shell/Kconfig:23

Menu path: (top menu) → Shell Options → Enable shell → Enable shell backends

config SHELL_TELNET_LINE_BUF_SIZE
    int
    prompt "Telnet line buffer size" if SHELL_BACKEND_TELNET && SHELL_BACKENDS && SHELL
    default 80 if SHELL_BACKEND_TELNET && SHELL_BACKENDS && SHELL
    depends on SHELL_BACKEND_TELNET && SHELL_BACKENDS && SHELL
    help
      This option can be used to modify the size of the buffer storing
      shell output line, prior to sending it through the network.
      Of course an output line can be longer than such size, it just
      means sending it will start as soon as it reaches this size.
      It really depends on what type of output is expected.
      A lot of short lines: better reduce this value. On the contrary,
      raise it.

(Definitions include propagated dependencies, including from if’s and menus.)