blob: ea9f2a2ec4aedee69344f283993b19e6aa392dc9 (
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
|
/* $OpenBSD: test_netdb.c,v 1.4 2000/01/06 06:54:43 d Exp $ */
/*
* Copyright (c) 1995 by Greg Hudson, ghudson@.mit.edu
*
* Test netdb calls.
*/
#include <pthread.h>
#include <string.h>
#include <stdio.h>
#include <netdb.h>
#include <errno.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include "test.h"
static void test_serv()
{
struct servent *serv;
CHECKhn(serv = getservbyname("telnet", "tcp"));
printf("getservbyname -> port %d\n", ntohs(serv->s_port));
}
static void test_host()
{
struct hostent *host;
struct in_addr addr;
CHECKhn(host = gethostbyname("localhost"));
memcpy(&addr, host->h_addr, sizeof(addr));
printf("gethostbyname -> %s\n", inet_ntoa(addr));
}
static void test_localhost()
{
struct hostent *host;
CHECKhn(host = gethostbyname("127.0.0.1"));
}
int
main(int argc, char **argv)
{
test_serv();
test_localhost();
test_host();
SUCCEED;
}
|