3 Network Virtual Terminal
These modules handle the low-level NVT connections over a pair of input/output ports. In real-world deployments the nvt-tcp-accept-ports is to be used, however it is possible to transparently create a pair of NVT ports over any bi-directional connection. For example make-pipe is often used for testing many features provided by these modules.
3.1 NVT Encoder
(require tui/term/nvt-encoder) | package: tui-term |
Helper module for transparently escaping IAC bytes in the output. For bypassing this escaping feature of the nvt-output-port? the procedure write-nvt-raw-bytes must be used.
procedure
(encode-nvt-buffer buf) → (listof byteslice?)
buf : bytes?
3.2 NVT Options
(require tui/term/nvt-options) | package: tui-term |
Handling of NVT options on both sides of the connection. It keeps track of either received or sent options. It is possible to interpret the currently negotiated NVT state based on the options on both its input and output ports.
value
IAC | #xff |
DONT | #xfe |
DO | #xfd |
WONT | #xfc |
WILL | #xfb |
SB | #xfa |
GA | #xf9 |
EL | #xf8 |
EC | #xf7 |
AYT | #xf6 |
AO | #xf5 |
IP | #xf4 |
BRK | #xf3 |
DM | #xf2 |
NOP | #xf1 |
SE | #xf0 |
LINEMODE | #x22 |
NAWS | #x1f |
TTYPE | #x18 |
SGA | #x3 |
ECHO | #x1 |
BINARY | #x0 |
procedure
(set-nvt-option options action option) → hash?
options : hash? action : byte? option : byte?
procedure
(set-nvt-option! options action option) → void?
options : hash? action : byte? option : byte?
procedure
(format-nvt-options options) → string?
options : hash?
procedure
(nvt-option-bytes action option) → bytes?
action : byte? option : byte?
procedure
(nvt-base-action action) → byte?
action : byte?
procedure
(nvt-action-state action) → boolean?
action : byte?
procedure
(make-nvt-action/option-key action option)
→ (integer-in 0 65535) action : byte? option : byte?
procedure
(split-nvt-action/option-key action/option) →
byte? byte? action/option : (integer-in 0 65535)
procedure
3.3 NVT Output Port
(require tui/term/nvt-output-port) | package: tui-term |
NVT output port ensures escaping of any IAC bytes (255) as doubles. For regular output everything is transparent for the port user. NVT protocol implementation must use write-nvt-raw-bytes for any negotiations and subnegotiations.
procedure
(make-nvt-output-port [out]) → nvt-output-port?
out : output-port? = (current-output-port)
procedure
(nvt-output-port? v) → boolean?
v : any/c
procedure
(write-nvt-raw-bytes bs [out]) → exact-nonnegative-integer?
bs : bytes? out : nvt-output-port? = (current-output-port)
procedure
(send-nvt-option action option [out]) → void?
action : fixnum? option : fixnum? out : nvt-output-port? = (current-output-port)
3.4 NVT Input Port
(require tui/term/nvt-input-port) | package: tui-term |
NVT input port de-escapes any escaped IAC bytes (255). It also provides machinery for handling incoming NVT options and allows for specific subnegotiations callbacks.
procedure
(make-nvt-input-port [ #:resize-handler resize-handler #:termtype-handler termtype-handler #:max-sb-length max-sb-length in]) → nvt-input-port? resize-handler : procedure? = void termtype-handler : procedure? = void max-sb-length : exact-positive-integer? = 128 in : input-port? = (current-input-port)
The resize-handler must accept two arguments - the terminal width and height respectively.
The termtype-handler must accept one argument - a string representing the terminal type.
All subnegotiations must be shorter than max-sb-length to avoid infinite loops when corrupted input is received. When the subnegotiation length is exceeded, normal operation is resumed starting at the very next byte.
procedure
(nvt-input-port? v) → boolean?
v : any/c
procedure
(nvt-input-port-options nvti) → hash?
nvti : nvt-input-port?
3.5 NVT TCP Acceptor
(require tui/term/nvt-ports) | package: tui-term |
This module is a glue between TCP stack and low-level NVT implementation.
procedure
(nvt-tcp-accept-ports tcp-listen-socket [ #:resize-handler resize-handler #:termtype-handler termtype-handler])
→
nvt-input-port? nvt-output-port? tcp-listen-socket : tcp-listener? resize-handler : procedure? = void termtype-handler : procedure? = void
This is setup similar to a local TTY in "raw" mode.
3.6 NVT Term
(require tui/term/nvt) | package: tui-term |
This module wraps all the NVT layers into a tterm package.
procedure
(nvt-tcp-accept-term tcp-listen-socket) → tterm?
tcp-listen-socket : tcp-listener?