blob: 7818c7f4d856c8ee2adfb81f80f15b9c92bab495 (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// tests
//
// = FILENAME
// Enum_interfaces.cpp
//
// = DESCRIPTION
// This is a simple test of <ACE::get_ip_interfaces>. This call
// retrieves the IP addresses assigned to the host by
// interrogating the kernel. Network applications typically
// assume gethostbyname(uname()) will work, but this is just a
// convention. It is also problematic if the resolver code
// (DNS/NIS+...) is misconfigured. This happens more than
// programmers realize. It is better to find out by asking the
// kernel for local address assignments. This API is similar to
// what netstat -ni or ifconfig -a produces on UNIX or ipconfig on
// Windows NT. In fact, it was by reverse engineering these tools
// that this api was created.
//
// = AUTHOR
// Michael R. MacFaden <mrm@cisco.com>
//
// ============================================================================
#include "ace/OS.h"
#include "ace/INET_Addr.h"
#include "test_config.h"
int
main (int, char *[])
{
ACE_START_TEST ("Enum_Interfaces_Test");
ACE_INET_Addr *the_addr_array;
size_t how_many = 0;
int rc = ACE::get_ip_interfaces (how_many, the_addr_array);
if (rc != 0)
ACE_ERROR ((LM_ERROR,
"%p\n",
"ACE::get_ip_interfaces failed"));
else if (how_many == 0)
ACE_ERROR ((LM_ERROR,
"No interfaces presently configured in the kernel\n"));
else
{
ACE_DEBUG ((LM_DEBUG, "there are %d interfaces\n", how_many));
for (size_t i = 0; i < how_many; i++)
ACE_DEBUG ((LM_DEBUG, "\t%s\n", the_addr_array[i].get_host_addr ()));
delete [] the_addr_array;
}
ACE_END_TEST;
return 0;
}
|