blob: 15e72aef0c74c4d936aa70f948299b6df07ec35a (
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
|
/* ==== test_netdb.c =========================================================
* Copyright (c) 1995 by Greg Hudson, ghudson@.mit.edu
*
* Description : Test netdb calls.
*
* 1.00 95/01/05 ghudson
* -Started coding this file.
*/
#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;
}
|