mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
10 lines
354 B
Text
10 lines
354 B
Text
|
|
(define-module (chibi net)
|
|
(export sockaddr? addressinfo? 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 (scheme))
|
|
(import (chibi posix))
|
|
(include-shared "net")
|
|
(include "net.scm"))
|
|
|