• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
connect_4(uv_connect_t * req,int status)25 static void connect_4(uv_connect_t* req, int status) {
26   ASSERT(status != UV_EADDRNOTAVAIL);
27 }
28 
connect_6(uv_connect_t * req,int status)29 static void connect_6(uv_connect_t* req, int status) {
30   ASSERT(status != UV_EADDRNOTAVAIL);
31 }
32 
TEST_IMPL(connect_unspecified)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 
42   loop = uv_default_loop();
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 
60   ASSERT(uv_run(loop, UV_RUN_DEFAULT) == 0);
61 
62   return 0;
63 }
64