test-connect-unspecified.c
Go to the documentation of this file.
1 /* Copyright libuv project contributors. All rights reserved.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to
5 * deal in the Software without restriction, including without limitation the
6 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7 * sell copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions:
9 *
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19 * IN THE SOFTWARE.
20 */
21 
22 #include "uv.h"
23 #include "task.h"
24 
25 static void connect_4(uv_connect_t* req, int status) {
26  ASSERT(status != UV_EADDRNOTAVAIL);
27 }
28 
29 static void connect_6(uv_connect_t* req, int status) {
30  ASSERT(status != UV_EADDRNOTAVAIL);
31 }
32 
33 TEST_IMPL(connect_unspecified) {
34  uv_loop_t* loop;
35  uv_tcp_t socket4;
36  struct sockaddr_in addr4;
37  uv_connect_t connect4;
38  uv_tcp_t socket6;
39  struct sockaddr_in6 addr6;
40  uv_connect_t connect6;
41 
43 
44  ASSERT(uv_tcp_init(loop, &socket4) == 0);
45  ASSERT(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr4) == 0);
46  ASSERT(uv_tcp_connect(&connect4,
47  &socket4,
48  (const struct sockaddr*) &addr4,
49  connect_4) == 0);
50 
51  if (can_ipv6()) {
52  ASSERT(uv_tcp_init(loop, &socket6) == 0);
53  ASSERT(uv_ip6_addr("::", TEST_PORT, &addr6) == 0);
54  ASSERT(uv_tcp_connect(&connect6,
55  &socket6,
56  (const struct sockaddr*) &addr6,
57  connect_6) == 0);
58  }
59 
61 
62  return 0;
63 }
async_greeter_server_with_graceful_shutdown.loop
loop
Definition: async_greeter_server_with_graceful_shutdown.py:59
uv_ip6_addr
UV_EXTERN int uv_ip6_addr(const char *ip, int port, struct sockaddr_in6 *addr)
Definition: uv-common.c:232
task.h
uv_connect_s
Definition: uv.h:580
ASSERT
#define ASSERT(expr)
Definition: task.h:102
status
absl::Status status
Definition: rls.cc:251
uv_run
UV_EXTERN int uv_run(uv_loop_t *, uv_run_mode mode)
Definition: unix/core.c:361
TEST_PORT
#define TEST_PORT
Definition: task.h:53
uv_tcp_connect
UV_EXTERN int uv_tcp_connect(uv_connect_t *req, uv_tcp_t *handle, const struct sockaddr *addr, uv_connect_cb cb)
Definition: uv-common.c:315
uv_ip4_addr
UV_EXTERN int uv_ip4_addr(const char *ip, int port, struct sockaddr_in *addr)
Definition: uv-common.c:221
uv_default_loop
UV_EXTERN uv_loop_t * uv_default_loop(void)
Definition: uv-common.c:733
sockaddr_in6
Definition: ares_ipv6.h:25
req
static uv_connect_t req
Definition: test-connection-fail.c:30
UV_RUN_DEFAULT
@ UV_RUN_DEFAULT
Definition: uv.h:254
addr6
static struct sockaddr_in6 addr6
Definition: test-getnameinfo.c:34
uv_tcp_init
UV_EXTERN int uv_tcp_init(uv_loop_t *, uv_tcp_t *handle)
Definition: unix/tcp.c:143
uv_tcp_s
Definition: uv.h:544
addr4
static struct sockaddr_in addr4
Definition: test-getnameinfo.c:33
uv.h
TEST_IMPL
TEST_IMPL(connect_unspecified)
Definition: test-connect-unspecified.c:33
connect_4
static void connect_4(uv_connect_t *req, int status)
Definition: test-connect-unspecified.c:25
connect_6
static void connect_6(uv_connect_t *req, int status)
Definition: test-connect-unspecified.c:29
can_ipv6
static UNUSED int can_ipv6(void)
Definition: task.h:315
uv_loop_s
Definition: uv.h:1767


grpc
Author(s):
autogenerated on Thu Mar 13 2025 03:01:29