:orphan: .. title:: CONFIG_SHELL_TELNET_LINE_BUF_SIZE .. kconfig:: CONFIG_SHELL_TELNET_LINE_BUF_SIZE CONFIG_SHELL_TELNET_LINE_BUF_SIZE ################################# *Telnet line buffer size* Type: ``int`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`SHELL_BACKEND_TELNET ` && \ :kconfig:`SHELL_BACKENDS ` && \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 80 Kconfig definition ================== At ``/shell/Kconfig.backends:213`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:45`` → ``/shell/Kconfig:18`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable shell backends → Enable TELNET backend. .. code-block:: kconfig config SHELL_TELNET_LINE_BUF_SIZE int "Telnet line buffer size" default 80 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. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*