mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 14:49:18 +02:00
11 lines
392 B
Text
11 lines
392 B
Text
|
|
(define-module (chibi net)
|
|
(export sockaddr? address-info? get-address-info socket connect
|
|
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"))
|
|
|