mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-04 03:36:36 +02:00
Adding missing AF_INET6 binding.
This commit is contained in:
parent
7f2b2963b1
commit
85548cc9c8
2 changed files with 3 additions and 1 deletions
|
@ -7,7 +7,8 @@
|
||||||
send receive! receive
|
send receive! receive
|
||||||
address-info-family address-info-socket-type address-info-protocol
|
address-info-family address-info-socket-type address-info-protocol
|
||||||
address-info-address address-info-address-length address-info-next
|
address-info-address address-info-address-length address-info-next
|
||||||
address-family/unix address-family/inet address-family/unspecified
|
address-family/unix address-family/inet address-family/inet6
|
||||||
|
address-family/unspecified
|
||||||
socket-type/stream socket-type/datagram socket-type/raw
|
socket-type/stream socket-type/datagram socket-type/raw
|
||||||
ip-proto/ip ip-proto/tcp ip-proto/udp
|
ip-proto/ip ip-proto/tcp ip-proto/udp
|
||||||
ai/passive ai/canonname ai/numeric-host
|
ai/passive ai/canonname ai/numeric-host
|
||||||
|
|
|
@ -80,6 +80,7 @@
|
||||||
(define-c-const int (address-family/unspecified "AF_UNSPEC"))
|
(define-c-const int (address-family/unspecified "AF_UNSPEC"))
|
||||||
(define-c-const int (address-family/unix "AF_UNIX"))
|
(define-c-const int (address-family/unix "AF_UNIX"))
|
||||||
(define-c-const int (address-family/inet "AF_INET"))
|
(define-c-const int (address-family/inet "AF_INET"))
|
||||||
|
(define-c-const int (address-family/inet6 "AF_INET6"))
|
||||||
(define-c-const int (socket-type/stream "SOCK_STREAM"))
|
(define-c-const int (socket-type/stream "SOCK_STREAM"))
|
||||||
(define-c-const int (socket-type/datagram "SOCK_DGRAM"))
|
(define-c-const int (socket-type/datagram "SOCK_DGRAM"))
|
||||||
(define-c-const int (socket-type/raw "SOCK_RAW"))
|
(define-c-const int (socket-type/raw "SOCK_RAW"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue