/* -*- C++ -*- */ // $Id$ // LSOCK_Stream.i // Sets both the file descriptors... Overrides handle from the base // classes. inline void ACE_LSOCK_Stream::set_handle (ACE_HANDLE fd) { ACE_TRACE ("ACE_LSOCK_Stream::set_handle"); this->ACE_SOCK_Stream::set_handle (fd); this->ACE_LSOCK::set_handle (fd); } inline ACE_HANDLE ACE_LSOCK_Stream::get_handle (void) const { ACE_TRACE ("ACE_LSOCK_Stream::get_handle"); return this->ACE_SOCK_Stream::get_handle (); }