[gforth] / gforth / unix / terminal-server.fs  

gforth: gforth/unix/terminal-server.fs

File: [gforth] / gforth / unix / terminal-server.fs (download)
Revision: 1.1, Fri Jul 27 23:28:10 2012 UTC (9 months, 3 weeks ago) by pazsan
Branch: MAIN
Added terminal server as socket example

\ terminal server for Gforth

require unix/socket.fs

4444 Value gforth-port#

: term-cr "\x0d\x0a" type outfile-id flush-file throw ;

: get-connection ( -- )
    gforth-port# create-server { lsocket }
    lsocket 1 listen
    lsocket accept-socket
    dup to infile-id
    dup to outfile-id
    to errfile-id
    ['] term-cr is cr
    key drop BEGIN  key? WHILE key drop REPEAT ;

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help