forked from unpbook/unpv13e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.c
65 lines (53 loc) · 1.55 KB
/
test2.c
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
#include "unp.h"
int
main(int argc, char **argv)
{
int sockfd;
socklen_t salen;
struct addrinfo *res;
struct sockaddr *cli, *serv;
if (argc != 2)
err_quit("usage: test2 <IPaddress>");
#ifdef notdef
res = Host_serv(argv[1], "daytime", AF_UNSPEC, SOCK_DGRAM);
printf("res->ai_addrlen = %d\n", res->ai_addrlen);
printf("res->ai_addr = %p\n", res->ai_addr);
printf("res->ai_next = %p\n", res->ai_next);
printf("res->ai_addr->sa_family = %p\n", res->ai_addr->sa_family);
#endif
sockfd = Udp_client(argv[1], "13", (void **) &serv, &salen);
printf("sockfd = %d\n", sockfd);
exit(0);
}
#ifdef notdef
int
udp_client(const char *host, const char *serv, void **saptr, socklen_t *lenp)
{
int sockfd, n;
struct addrinfo hints, *res, *ressave;
bzero(&hints, sizeof(struct addrinfo));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM;
if ( (n = getaddrinfo(host, serv, &hints, &res)) != 0)
err_quit("udp_client error for %s, %s: %s",
host, serv, gai_strerror(n));
ressave = res;
do {
sockfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
if (sockfd >= 0)
break; /* success */
} while ( (res = res->ai_next) != NULL);
if (res == NULL) /* errno set from final socket() */
err_sys("udp_client error for %s, %s", host, serv);
*saptr = Malloc(res->ai_addrlen);
memcpy(*saptr, res->ai_addr, res->ai_addrlen);
*lenp = res->ai_addrlen;
freeaddrinfo(ressave);
return(sockfd);
}
int
Udp_client(const char *host, const char *serv, void **saptr, socklen_t *lenptr)
{
return(udp_client(host, serv, saptr, lenptr));
}
#endif