libuv/test/test-pipe-reject.c
Juan José Arboleda e2d3594774 unix,win: introduce uv_accept_reject call
This call will immediately close the accepted fd and,
continue with the queued fds.

Fixes: https://github.com/libuv/libuv/issues/1754
Co-authored-by: Hüseyin Açacak <huseyin@janeasystems.com>
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
2025-02-20 16:00:23 +03:00

72 lines
2.2 KiB
C

/* Copyright libuv project and contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include "task.h"
#include "uv.h"
typedef struct {
uv_pipe_t pipe_handle;
uv_connect_t conn_req;
} client_t;
static uv_pipe_t server_handle;
static client_t client_handle;
static int connect_cb_called;
static void connect_cb(uv_connect_t* _, int status) {
ASSERT_OK(status);
connect_cb_called++;
}
static void connection_pipe_cb(uv_stream_t* server, int status) {
ASSERT_OK(uv_reject(server));
ASSERT_OK(status);
uv_close((uv_handle_t*) &server_handle, NULL);
}
TEST_IMPL(pipe_reject) {
int r;
uv_loop_t* loop;
loop = uv_default_loop();
r = uv_pipe_init(loop, &server_handle, 0);
ASSERT_OK(r);
r = uv_pipe_bind(&server_handle, TEST_PIPENAME);
ASSERT_OK(r);
r = uv_listen((uv_stream_t*)&server_handle, 128, connection_pipe_cb);
ASSERT_OK(r);
r = uv_pipe_init(loop, (uv_pipe_t*)&client_handle, 0);
ASSERT_OK(r);
uv_pipe_connect(&client_handle.conn_req,
&client_handle.pipe_handle,
TEST_PIPENAME,
connect_cb);
uv_run(loop, UV_RUN_DEFAULT);
ASSERT(connect_cb_called == 1);
return 0;
}