00001
00002
00003
00004
00005
00006 ASYS_INLINE
00007 ACE_SOCK::~ACE_SOCK (void)
00008 {
00009
00010 }
00011
00012 ASYS_INLINE int
00013 ACE_SOCK::set_option (int level,
00014 int option,
00015 void *optval,
00016 int optlen) const
00017 {
00018 ACE_TRACE ("ACE_SOCK::set_option");
00019 return ACE_OS::setsockopt (this->get_handle (), level,
00020 option, (char *) optval, optlen);
00021 }
00022
00023
00024
00025 ASYS_INLINE int
00026 ACE_SOCK::get_option (int level,
00027 int option,
00028 void *optval,
00029 int *optlen) const
00030 {
00031 ACE_TRACE ("ACE_SOCK::get_option");
00032 return ACE_OS::getsockopt (this->get_handle (), level,
00033 option, (char *) optval, optlen);
00034 }