00001 // -*- C++ -*- 00002 // 00003 // LSOCK_Stream.inl,v 4.2 2005/10/28 16:14:52 ossama Exp 00004 00005 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 // Sets both the file descriptors... Overrides handle from the base 00008 // classes. 00009 00010 ACE_INLINE void 00011 ACE_LSOCK_Stream::set_handle (ACE_HANDLE fd) 00012 { 00013 ACE_TRACE ("ACE_LSOCK_Stream::set_handle"); 00014 this->ACE_SOCK_Stream::set_handle (fd); 00015 this->ACE_LSOCK::set_handle (fd); 00016 } 00017 00018 ACE_INLINE ACE_HANDLE 00019 ACE_LSOCK_Stream::get_handle (void) const 00020 { 00021 ACE_TRACE ("ACE_LSOCK_Stream::get_handle"); 00022 return this->ACE_SOCK_Stream::get_handle (); 00023 } 00024 00025 ACE_END_VERSIONED_NAMESPACE_DECL