chibi-scheme/lib/chibi/net.module
Alex Shinn 44a6c530d9 EVAL save/restores the current exception handler.
It doesn't really make sense for an exception to pass
outside of EVAL.  Fixes issue #17.
2009-12-28 23:18:04 +09:00

10 lines
370 B
Text

(define-module (chibi net)
(export sockaddr? address-info? get-address-info socket connect with-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"))