From aa2f5ae13f05b17164413f6b09fe5c5949733776 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sat, 4 Sep 2010 15:41:12 -0700 Subject: [PATCH] io.sockets: f 0 should work --- basis/io/sockets/sockets-tests.factor | 15 +++++++++++++++ basis/io/sockets/sockets.factor | 8 +++++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/basis/io/sockets/sockets-tests.factor b/basis/io/sockets/sockets-tests.factor index 87d4f1c0a9..56939f484f 100644 --- a/basis/io/sockets/sockets-tests.factor +++ b/basis/io/sockets/sockets-tests.factor @@ -70,6 +70,18 @@ io.streams.string ; [ [ [ ipv4? ] [ ipv6? ] bi or ] all? ] bi ] unit-test +[ t t ] [ + f resolve-host + [ length 1 >= ] + [ [ [ ipv4? ] [ ipv6? ] bi or ] all? ] bi +] unit-test + +[ t t ] [ + f 0 resolve-host + [ length 1 >= ] + [ [ [ ipv4? ] [ ipv6? ] bi or ] all? ] bi +] unit-test + ! Smoke-test UDP [ ] [ "127.0.0.1" 0 "datagram1" set ] unit-test [ ] [ "datagram1" get addr>> "addr1" set ] unit-test @@ -117,3 +129,6 @@ io.streams.string ; "hi\n" write flush readln readln ] with-client ] unit-test + +! Binding to all interfaces should work +[ ] [ f 0 dispose ] unit-test diff --git a/basis/io/sockets/sockets.factor b/basis/io/sockets/sockets.factor index 07a60c2d67..9a8b352a1b 100644 --- a/basis/io/sockets/sockets.factor +++ b/basis/io/sockets/sockets.factor @@ -17,6 +17,8 @@ IN: io.sockets ! Addressing > "Unix domain socket: " prepend ; SLOT: port -TUPLE: ipv4 { host string read-only } ; +TUPLE: ipv4 { host ?string read-only } ; C: ipv4 @@ -115,7 +117,7 @@ M: inet4 parse-sockaddr ( sockaddr-in addrspec -- newaddrspec ) M: inet4 present [ host>> ] [ port>> number>string ] bi ":" glue ; -TUPLE: ipv6 { host string read-only } ; +TUPLE: ipv6 { host ?string read-only } ; C: ipv6 @@ -322,7 +324,7 @@ SYMBOL: remote-address GENERIC: resolve-host ( addrspec -- seq ) -TUPLE: hostname host ; +TUPLE: hostname { host ?string read-only } ; TUPLE: inet < hostname port ;