diff options
author | Juan José <soyjuanarbol@gmail.com> | 2024-12-16 03:05:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 09:05:09 +0100 |
commit | beebf02cf6a69b78673182421445fcbc9b10c341 (patch) | |
tree | ecf973eacd5fb9d5f855441a4819ef54586530b6 /test | |
parent | a94f2ad2b7b3d9c527d9b589d6200cca3b11d413 (diff) | |
download | libuv-beebf02cf6a69b78673182421445fcbc9b10c341.tar.gz libuv-beebf02cf6a69b78673182421445fcbc9b10c341.zip |
test: fix udp-multicast-join for FreeBSD (#4655)
Fixes: https://github.com/libuv/libuv/issues/4651
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test-udp-multicast-join6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test-udp-multicast-join6.c b/test/test-udp-multicast-join6.c index c6872e42..430e4e33 100644 --- a/test/test-udp-multicast-join6.c +++ b/test/test-udp-multicast-join6.c @@ -33,6 +33,7 @@ #if defined(__APPLE__) || \ defined(_AIX) || \ defined(__MVS__) || \ + defined(__FreeBSD__) || \ defined(__NetBSD__) || \ defined(__OpenBSD__) #define MULTICAST_ADDR "ff02::1%lo0" |