test: Fix IPv6 check on BSD systems

This commit is contained in:
nthumann 2021-05-30 23:34:52 +02:00
parent b295395664
commit 2be3572506
No known key found for this signature in database
GPG key ID: 91AE26F52DE54B76

View file

@ -151,7 +151,7 @@ def test_ipv6_local():
have_ipv6 = True
try:
s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
s.connect(('::1', 0))
s.connect(('::1', 1))
except socket.error:
have_ipv6 = False
return have_ipv6