mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
other version numbers than 7 to `scheme-report-environment`, providing initial (scheme base) library.
13 lines
570 B
Scheme
13 lines
570 B
Scheme
|
|
(define-library (chibi net)
|
|
(export sockaddr? address-info? get-address-info make-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
|
|
address-family/unix address-family/inet
|
|
socket-type/stream socket-type/datagram socket-type/raw
|
|
ip-proto/tcp ip-proto/udp)
|
|
(import (scheme) (chibi filesystem))
|
|
(include-shared "net")
|
|
(include "net.scm"))
|