1
0
mirror of https://github.com/janet-lang/janet synced 2026-05-18 03:12:16 +00:00

Disable ipv6 for now in main test.

This commit is contained in:
Calvin Rose
2026-01-12 08:00:11 -06:00
parent d35f189446
commit 0a5ff208a8
+2 -2
View File
@@ -29,7 +29,7 @@
# Raw socket testing
(def s (net/socket :datagram :ipv4))
(assert-no-error "multicast ipv4" (net/setsockopt s :ip-multicast-ttl 255))
(def s6 (net/socket :datagram :ipv6))
(assert-no-error "multicast ipv6" (net/setsockopt s6 :ipv6-multicast-hops 255))
#(def s6 (net/socket :datagram :ipv6))
#(assert-no-error "multicast ipv6" (net/setsockopt s6 :ipv6-multicast-hops 255))
(end-suite)