summaryrefslogtreecommitdiff
path: root/tests/INET_Addr_Test.cpp
blob: b068c0831b2e07eaa04247b20d6088df9b3c6081 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    tests
//
// = FILENAME
//    INET_Addr_Test.cpp
//
// = DESCRIPTION
//     Performs several tests on the ACE_INET_Addr class.  It creates several
//     IPv4 and IPv6 addresses and checks that the address formed by the
//     class is valid.
//
// = AUTHOR
//    John Aughey (jha@aughey.com)
//
// ============================================================================

#include <stdio.h>
#include "ace/INET_Addr.h"

int main(int argc, char *argv[])
{
  ACE_UNUSED_ARG(argc);
  ACE_UNUSED_ARG(argv);

  char *ipv4_addresses[] = {
    "127.0.0.1", "138.38.180.251", "64.219.54.121", "192.0.0.1", "10.0.0.1", 0
  };

  ACE_INET_Addr addr;

  for(int i=0; ipv4_addresses[i] != 0; i++) {
    struct in_addr addrv4;
    ACE_UINT32 addr32;

    ACE_OS::inet_pton(AF_INET,ipv4_addresses[i],(void*)&addrv4);

    memcpy((void*)&addr32,(void*)&addrv4,sizeof(addr32));

    addr.set(80,ipv4_addresses[i]);

    /* Now check to make sure get_ip_address matches and get_host_addr
       matches. */

    if(addr.get_ip_address() != addr32) {
      printf("Error: Address %s failed get_ip_address() check\n",ipv4_addresses[i]);
      printf("%u != %u\n",addr.get_ip_address(), addr32);
    }
    if(0 != ACE_OS::strcmp(addr.get_host_addr(),ipv4_addresses[i])) {
      printf("Error: Address %s failed get_host_addr() check\n",ipv4_addresses[i]);
      printf("%s != %s\n",addr.get_host_addr(),ipv4_addresses[i]);
    }
  }

  return 0;
}