00001 // -*- C++ -*- 00002 // 00003 // $Id: TLI.inl 69051 2005-10-28 16:14:56Z ossama $ 00004 00005 #include "ace/TLI.h" 00006 00007 00008 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00009 00010 ACE_INLINE 00011 int 00012 ACE_TLI::look (void) const 00013 { 00014 ACE_TRACE ("ACE_TLI::look"); 00015 return ACE_OS::t_look (this->get_handle ()); 00016 } 00017 00018 ACE_INLINE 00019 int 00020 ACE_TLI::rcvdis (struct t_discon *discon) const 00021 { 00022 ACE_TRACE ("ACE_TLI::rcvdis"); 00023 return ACE_OS::t_rcvdis (this->get_handle (), discon); 00024 } 00025 00026 ACE_INLINE 00027 int 00028 ACE_TLI::snddis (struct t_call *call) const 00029 { 00030 ACE_TRACE ("ACE_TLI::snddis"); 00031 return ACE_OS::t_snddis (this->get_handle (), call); 00032 } 00033 00034 ACE_INLINE 00035 int 00036 ACE_TLI::rcvrel (void) const 00037 { 00038 ACE_TRACE ("ACE_TLI::rcvrel"); 00039 return ACE_OS::t_rcvrel (this->get_handle ()); 00040 } 00041 00042 ACE_INLINE 00043 int 00044 ACE_TLI::sndrel (void) const 00045 { 00046 ACE_TRACE ("ACE_TLI::sndrel"); 00047 return ACE_OS::t_sndrel (this->get_handle ()); 00048 } 00049 00050 ACE_END_VERSIONED_NAMESPACE_DECL