summaryrefslogtreecommitdiff
path: root/CIAO/ciaosvcs/Events/CIAO_RTEC/SimpleAddressServer.cpp
blob: 301803ee0aa1e0edfaef9bed51088fd495633e53 (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
/* $Id$ */

#include "SimpleAddressServer.h"
#include <ace/INET_Addr.h>
#include <ace/OS_NS_string.h>

SimpleAddressServer::SimpleAddressServer (const ACE_INET_Addr& address)
{
#if defined (ACE_HAS_IPV6)
  if (address.get_type() == PF_INET6)
    {
      RtecUDPAdmin::UDP_Addr_v6 v6;
      sockaddr_in6 *in6 =
        reinterpret_cast<sockaddr_in6 *>(address.get_addr());
      ACE_OS::memcpy (v6.ipaddr,&in6->sin6_addr,16);
      v6.port = address.get_port_number();
      this->address_.v6_addr (v6);
      return;
    }
#endif /* ACE_HAS_IPV6 */
  RtecUDPAdmin::UDP_Addr v4;
  v4.ipaddr = address.get_ip_address ();
  v4.port   = address.get_port_number ();
  this->address_.v4_addr (v4);
}

SimpleAddressServer::SimpleAddressServer (const RtecUDPAdmin::UDP_Addr& addr)
{
  this->address_.v4_addr (addr);
}

void
SimpleAddressServer::get_addr (const RtecEventComm::EventHeader&,
                               RtecUDPAdmin::UDP_Addr& address)
    throw (CORBA::SystemException)
{
  if (this->address_._d() == RtecUDPAdmin::Rtec_inet6)
    throw CORBA::DATA_CONVERSION(0, CORBA::COMPLETED_YES);
  address = this->address_.v4_addr();
}


void
SimpleAddressServer::get_address (const RtecEventComm::EventHeader&,
                                  RtecUDPAdmin::UDP_Address_out address)
  throw (CORBA::SystemException)
{
  address = this->address_;
}