00001 // -*- C++ -*- 00002 // 00003 // $Id: UDP.inl 73791 2006-07-27 20:54:56Z wotte $ 00004 00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 //---------------------------------------------------------------------- 00008 // TAO_AV_UDP_Flow_Handler 00009 //---------------------------------------------------------------------- 00010 00011 ACE_INLINE 00012 const ACE_SOCK_Dgram * 00013 TAO_AV_UDP_Flow_Handler::get_socket (void) const 00014 { 00015 return &this->sock_dgram_; 00016 } 00017 00018 ACE_INLINE 00019 int 00020 TAO_AV_UDP_Flow_Handler::open (ACE_Addr &address) 00021 { 00022 return this->sock_dgram_.open (address); 00023 } 00024 00025 ACE_INLINE 00026 int 00027 TAO_AV_UDP_Flow_Handler::close (void) 00028 { 00029 return this->sock_dgram_.close (); 00030 } 00031 00032 TAO_END_VERSIONED_NAMESPACE_DECL