Class
stream :socketA socket handle.
:direction One of:input,:output, or:io.
element-type An element type.
socket-stream-socket socket-stream class implements a buffered stream connected to a socket. The socket direction, specified by:socket, and the direction, specified by:direction, must be passed for a meaningful stream to be constructed. Common Lisp input functions such asread-char will seeend-of-file if the other end of the socket is closed. The:element-type keyword specifies the expected element type of the stream traffic. handle.
(make-instance 'comm:socket-stream
:socket handle
:direction :io
:element-type 'base-char)
open-tcp-streamstart-up-server