diff options
author | Zack Weinberg <zackw@panix.com> | 2017-06-08 15:39:03 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2017-06-08 15:39:03 -0400 |
commit | 5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch) | |
tree | 4470480d904b65cf14ca524f96f79eca818c3eaf /resolv/ga_test.c | |
parent | 199fc19d3aaaf57944ef036e15904febe877fc93 (diff) | |
download | glibc-zack/build-layout-experiment.tar glibc-zack/build-layout-experiment.tar.gz glibc-zack/build-layout-experiment.tar.bz2 glibc-zack/build-layout-experiment.zip |
Prepare for radical source tree reorganization.zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage
directory, REORG.TODO, except for files that will certainly still
exist in their current form at top level when we're done (COPYING,
COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which
are moved to the new directory OldChangeLogs, instead), and the
generated file INSTALL (which is just deleted; in the new order, there
will be no generated files checked into version control).
Diffstat (limited to 'resolv/ga_test.c')
-rw-r--r-- | resolv/ga_test.c | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/resolv/ga_test.c b/resolv/ga_test.c deleted file mode 100644 index 673162f015..0000000000 --- a/resolv/ga_test.c +++ /dev/null @@ -1,99 +0,0 @@ -#include <arpa/inet.h> -#include <netinet/in.h> -#include <netdb.h> -#include <signal.h> -#include <stdio.h> -#include <stdlib.h> - - -int -main (void) -{ -#define N 10 - struct gaicb reqmem[N]; - struct gaicb *req[N]; - int n; - - for (n = 0; n < N; ++n) - { - asprintf (&reqmem[n].ar_name, "test%d.test.redhat.com", 140 + n); - reqmem[n].ar_service = NULL; - reqmem[n].ar_request = NULL; - reqmem[n].ar_result = NULL; - req[n] = &reqmem[n]; - } - - if (getaddrinfo_a (GAI_NOWAIT, req, N, NULL) != 0) - { - puts ("queue call failed"); - exit (1); - } - else - puts ("queue call successful"); - - while (1) - { - int any = 0; - - for (n = 0; n < N; ++n) - if (req[n] != NULL && gai_error (req[n]) != EAI_INPROGRESS) - { - if (gai_error (req[n]) == 0) - { - struct addrinfo *runp = req[n]->ar_result; - - while (runp != NULL) - { - switch (runp->ai_family) - { - case PF_INET: - { - struct sockaddr_in *sinp; - - sinp = (struct sockaddr_in *) runp->ai_addr; - printf ("%2d: %s = %s\n", n, - req[n]->ar_name, inet_ntoa (sinp->sin_addr)); - } - break; - default: - printf ("%2d: family %d\n", n, runp->ai_family); - break; - } - runp = runp->ai_next; - } - } - else - printf ("error for %d: %s\n", n, - gai_strerror (gai_error (req[n]))); - req[n] = NULL; - break; - } - else if (req[n] != NULL) - any = 1; - - if (n == N) - { - if (any) - gai_suspend (req, N, NULL); - else - break; - } - } - - __libc_write(1,"got all\n", 8); - - for (n = 0; n < N; ++n) - if (gai_error (&reqmem[n]) == 0) - { - struct addrinfo *runp = reqmem[n].ar_result; - - while (runp != NULL) - { - struct addrinfo *oldp = runp; - runp = runp->ai_next; - freeaddrinfo (oldp); - } - } - - return 0; -} |