summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/AV/UDP.inl
blob: 72025b94dd5b3b441238631930cb2fe0e15f3c67 (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
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

//----------------------------------------------------------------------
// TAO_AV_UDP_Flow_Handler
//----------------------------------------------------------------------

ACE_INLINE
const ACE_SOCK_Dgram *
TAO_AV_UDP_Flow_Handler::get_socket (void) const
{
  return &this->sock_dgram_;
}

ACE_INLINE
int
TAO_AV_UDP_Flow_Handler::open (ACE_Addr &address)
{
  return this->sock_dgram_.open (address);
}

ACE_INLINE
int
TAO_AV_UDP_Flow_Handler::close (void)
{
  return  this->sock_dgram_.close ();
}

TAO_END_VERSIONED_NAMESPACE_DECL