summaryrefslogtreecommitdiff
path: root/resolv/ga_test.c
blob: 673162f0157d0245994552686d54c1204c8978b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#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;
}