5 /* Internal definitions used in the libc code. */
6 #define __getservbyname_r getservbyname_r
7 #define __socket socket
8 #define __getsockname getsockname
9 #define __inet_aton inet_aton
10 #define __gethostbyaddr_r gethostbyaddr_r
11 #define __gethostbyname2_r gethostbyname2_r
15 __check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen)
22 __idna_to_ascii_lz (const char *input, char **output, int flags)
27 __idna_to_unicode_lzlz (const char *input, char **output, int flags)
33 #include "../sysdeps/posix/getaddrinfo.c"
35 service_user *__nss_hosts_database attribute_hidden;
38 /* This is the beginning of the real test code. The above defines
39 (among other things) the function rfc3484_sort. */
42 #if __BYTE_ORDER == __BIG_ENDIAN
45 # define h(n) __bswap_constant_32 (n)
48 struct sockaddr_in addrs[] =
50 { .sin_family = AF_INET, .sin_addr = { h (0xc0a86d1d) } },
51 { .sin_family = AF_INET, .sin_addr = { h (0xc0a85d03) } },
52 { .sin_family = AF_INET, .sin_addr = { h (0xc0a82c3d) } },
53 { .sin_family = AF_INET, .sin_addr = { h (0xc0a86002) } },
54 { .sin_family = AF_INET, .sin_addr = { h (0xc0a802f3) } },
55 { .sin_family = AF_INET, .sin_addr = { h (0xc0a80810) } },
56 { .sin_family = AF_INET, .sin_addr = { h (0xc0a85e02) } }
58 #define naddrs (sizeof (addrs) / sizeof (addrs[0]))
59 static struct addrinfo ais[naddrs];
60 static struct sort_result results[naddrs];
62 static int expected[naddrs] =
69 __getline (char **lineptr, size_t *n, FILE *s)
80 labels = default_labels;
81 precedence = default_precedence;
83 struct sockaddr_in so;
84 so.sin_family = AF_INET;
85 so.sin_addr.s_addr = h (0xc0a85f19);
87 for (int i = 0; i < naddrs; ++i)
89 ais[i].ai_family = AF_INET;
90 ais[i].ai_addr = (struct sockaddr *) &addrs[i];
91 results[i].dest_addr = &ais[i];
92 results[i].got_source_addr = true;
93 memcpy(&results[i].source_addr, &so, sizeof (so));
94 results[i].source_addr_len = sizeof (so);
95 results[i].source_addr_flags = 0;
96 results[i].service_order = i;
97 results[i].prefixlen = 8;
100 qsort (results, naddrs, sizeof (results[0]), rfc3484_sort);
103 for (int i = 0; i < naddrs; ++i)
105 struct in_addr addr = ((struct sockaddr_in *) (results[i].dest_addr->ai_addr))->sin_addr;
107 int here = memcmp (&addr, &addrs[expected[i]].sin_addr,
108 sizeof (struct in_addr));
109 printf ("[%d] = %s: %s\n", i, inet_ntoa (addr), here ? "FAIL" : "OK");
116 #define TEST_FUNCTION do_test ()
117 #include "../test-skeleton.c"