test: allow multicast not permitted status
PR-URL: https://github.com/libuv/libuv/pull/1689 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
parent
6ecd79eb6e
commit
3ad4dfad0c
@ -44,7 +44,7 @@ static void close_cb(uv_handle_t* handle) {
|
||||
|
||||
static void sv_send_cb(uv_udp_send_t* req, int status) {
|
||||
ASSERT(req != NULL);
|
||||
ASSERT(status == 0 || status == UV_ENETUNREACH);
|
||||
ASSERT(status == 0 || status == UV_ENETUNREACH || status == UV_EPERM);
|
||||
CHECK_HANDLE(req->handle);
|
||||
|
||||
sv_send_cb_called++;
|
||||
|
||||
@ -44,7 +44,7 @@ static void close_cb(uv_handle_t* handle) {
|
||||
|
||||
static void sv_send_cb(uv_udp_send_t* req, int status) {
|
||||
ASSERT(req != NULL);
|
||||
ASSERT(status == 0 || status == UV_ENETUNREACH);
|
||||
ASSERT(status == 0 || status == UV_ENETUNREACH || status == UV_EPERM);
|
||||
CHECK_HANDLE(req->handle);
|
||||
|
||||
sv_send_cb_called++;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user