We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcbfdc0 commit 8a92732Copy full SHA for 8a92732
tests/test-udp.lua
@@ -251,7 +251,10 @@ return require('lib/tap')(function (test)
251
-- and for ipv6:
252
-- ip6tables --policy OUTPUT DROP
253
-- ip6tables -A OUTPUT -s ::1 -j ACCEPT
254
- if err == "EPERM" then
+ --
255
+ -- EHOSTUNREACH was also observed on the macos CI runner
256
+ -- TODO: Investigate EHOSTUNREACH more: https://github.com/luvit/luv/issues/781
257
+ if err == "EPERM" or err == "EHOSTUNREACH" then
258
print("send to multicast ip was likely denied by firewall, skipping")
259
client:close()
260
server:close()
0 commit comments