Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / SOCK.inl
blob0af7a80cef25cd0ae0a6299f19a6bd4057810636
1 // -*- C++ -*-
2 #include "ace/OS_NS_sys_socket.h"
4 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
6 ACE_INLINE int
7 ACE_SOCK::set_option (int level,
8                       int option,
9                       void *optval,
10                       int optlen) const
12   ACE_TRACE ("ACE_SOCK::set_option");
13   return ACE_OS::setsockopt (this->get_handle (), level,
14                              option, (char *) optval, optlen);
17 // Provides access to the ACE_OS::getsockopt system call.
19 ACE_INLINE int
20 ACE_SOCK::get_option (int level,
21                       int option,
22                       void *optval,
23                       int *optlen) const
25   ACE_TRACE ("ACE_SOCK::get_option");
26   return ACE_OS::getsockopt (this->get_handle (), level,
27                              option, (char *) optval, optlen);
30 ACE_END_VERSIONED_NAMESPACE_DECL