chibi-scheme/lib/chibi/net.module
Alex Shinn 695b44332e adding interface to bytecode-literals
(need to check these when debugging gc)
2010-12-05 16:53:38 -08:00

12 lines
421 B
Text

(define-module (chibi net)
(export sockaddr? address-info? get-address-info
socket connect bind accept listen
with-net-io open-net-io
address-info-family address-info-socket-type address-info-protocol
address-info-address address-info-address-length address-info-next)
(import-immutable (scheme))
(import (chibi filesystem))
(include-shared "net")
(include "net.scm"))