3

通常,在学习一门语言时,我会编写某种服务器。gforth能力使用网络套接字吗?

我在手册中没有看到任何关于套接字的内容。

4

1 回答 1

8

虽然我没有看到任何关于它的文档,但是有一个socket.fs绑定到 libc 的文档。

GNU FDL 下提供,来自 IanOsgood 的 Rossetta 代码提交

include unix/socket.fs

128 constant size

: (echo) ( sock buf -- sock buf )
  begin
    cr ." waiting..."
    2dup 2dup size read-socket nip
    dup 0>
  while
    ."  got: " 2dup type
    rot write-socket
  repeat
  drop drop drop ;

create buf size allot

: echo-server ( port -- )
  cr ." Listening on " dup .
  create-server
  dup 4 listen
  begin
    dup accept-socket
    cr ." Connection!"
    buf ['] (echo) catch
    cr ." Disconnected (" . ." )"
    drop close-socket
  again ;

12321 echo-server

但是,ymmv

nc localhost 12321
PING
PING
PONG
PONG

没有 Keepalives,所以你会从逻辑上断开连接。

于 2018-04-01T21:14:11.613 回答