Go to the first, previous, next, last section, table of contents.


telnet stop

Function: telnet:stop { -> }
file: 07-C-telnet.t
package: telnet
status: alpha

This function shuts down the telnet daemon for the current session.

It is currently implemented as:

: stop { -> }

    @$S.jobSet$S.session$S.socket -> socket

    socket$S.outOfBandJob -> j
    j job? if j abortJob fi

    nil --> socket$S.outOfBandJob
    nil --> socket$S.outOfBandInput
    nil --> socket$S.outOfBandOutput

    nil --> socket$S.telnetProtocol
    nil --> socket$S.thisTelnetState
    nil --> socket$S.thatTelnetState
    nil --> socket$S.telnetOptionHandlers
    nil --> socket$S.telnetOptionLock
;


Go to the first, previous, next, last section, table of contents.