aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/TLI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/ACE_wrappers/ace/TLI.cpp')
-rw-r--r--dep/ACE_wrappers/ace/TLI.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/dep/ACE_wrappers/ace/TLI.cpp b/dep/ACE_wrappers/ace/TLI.cpp
index 3f3431a3d9b..9e3ddf6a9eb 100644
--- a/dep/ACE_wrappers/ace/TLI.cpp
+++ b/dep/ACE_wrappers/ace/TLI.cpp
@@ -1,8 +1,6 @@
// $Id: TLI.cpp 80826 2008-03-04 14:51:23Z wotte $
-
// Defines the member functions for the base class of the ACE_TLI
// abstraction.
-
#include "ace/TLI.h"
#include "ace/Log_Msg.h"
#include "ace/OS_Memory.h"
@@ -10,19 +8,13 @@
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_sys_socket.h"
#include "ace/Auto_Ptr.h"
-
ACE_RCSID(ace, TLI, "$Id: TLI.cpp 80826 2008-03-04 14:51:23Z wotte $")
-
#if defined (ACE_HAS_TLI)
-
#if !defined (__ACE_INLINE__)
#include "ace/TLI.inl"
#endif /* __ACE_INLINE__ */
-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
ACE_ALLOC_HOOK_DEFINE(ACE_TLI)
-
void
ACE_TLI::dump (void) const
{
@@ -30,7 +22,6 @@ ACE_TLI::dump (void) const
ACE_TRACE ("ACE_TLI::dump");
#endif /* ACE_HAS_DUMP */
}
-
ACE_TLI::ACE_TLI (void)
{
ACE_TRACE ("ACE_TLI::ACE_TLI");
@@ -38,15 +29,12 @@ ACE_TLI::ACE_TLI (void)
// Solaris 2.4 ACE_TLI option handling is broken. Thus, we must do
// the memory allocation ourselves... Thanks to John P. Hearn
// (jph@ccrl.nj.nec.com) for the help.
-
this->so_opt_req.opt.maxlen = sizeof (opthdr) + sizeof (long);
ACE_NEW (this->so_opt_req.opt.buf,
char[this->so_opt_req.opt.maxlen]);
-
this->so_opt_ret.opt.maxlen = sizeof (opthdr) + sizeof (long);
ACE_NEW (this->so_opt_ret.opt.buf,
char[this->so_opt_ret.opt.maxlen]);
-
if (this->so_opt_ret.opt.buf == 0)
{
delete [] this->so_opt_req.opt.buf;
@@ -55,7 +43,6 @@ ACE_TLI::ACE_TLI (void)
}
#endif /* ACE_HAS_SVR4_TLI */
}
-
ACE_HANDLE
ACE_TLI::open (const char device[], int oflag, struct t_info *info)
{
@@ -63,10 +50,8 @@ ACE_TLI::open (const char device[], int oflag, struct t_info *info)
if (oflag == 0)
oflag = O_RDWR;
this->set_handle (ACE_OS::t_open ((char *) device, oflag, info));
-
return this->get_handle ();
}
-
ACE_TLI::~ACE_TLI (void)
{
ACE_TRACE ("ACE_TLI::~ACE_TLI");
@@ -80,7 +65,6 @@ ACE_TLI::~ACE_TLI (void)
}
#endif /* ACE_HAS_SVR4_TLI */
}
-
ACE_TLI::ACE_TLI (const char device[], int oflag, struct t_info *info)
{
ACE_TRACE ("ACE_TLI::ACE_TLI");
@@ -89,28 +73,23 @@ ACE_TLI::ACE_TLI (const char device[], int oflag, struct t_info *info)
ACE_TEXT ("%p\n"),
ACE_TEXT ("ACE_TLI::ACE_TLI")));
}
-
int
ACE_TLI::get_local_addr (ACE_Addr &sa) const
{
ACE_TRACE ("ACE_TLI::get_local_addr");
struct netbuf name;
-
name.maxlen = sa.get_size ();
name.buf = (char *) sa.get_addr ();
-
if (ACE_OS::t_getname (this->get_handle (), &name, LOCALNAME) == -1)
return -1;
else
return 0;
}
-
int
ACE_TLI::close (void)
{
ACE_TRACE ("ACE_TLI::close");
int result = 0; // Geisler: result must be int
-
if (this->get_handle () != ACE_INVALID_HANDLE)
{
result = ACE_OS::t_close (this->get_handle ());
@@ -118,13 +97,11 @@ ACE_TLI::close (void)
}
return result;
}
-
int
ACE_TLI::set_option (int level, int option, void *optval, int optlen)
{
/* Set up options for ACE_TLI */
ACE_TRACE ("ACE_TLI::set_option");
-
#if defined (ACE_HAS_XTI)
// ret will get the negotiated option back after attempting to set it.
// Assume this will fit in the requested size.
@@ -143,7 +120,6 @@ ACE_TLI::set_option (int level, int option, void *optval, int optlen)
# else
ACE_Auto_Array_Ptr<char> ret_opt_buf_p (ret.opt.buf);
# endif /* XPG5 vs XPG4 */
-
req.flags = T_NEGOTIATE;
req.opt.len = sizeof *opthdr + optlen;
ret.opt.maxlen = req.opt.len;
@@ -152,13 +128,10 @@ ACE_TLI::set_option (int level, int option, void *optval, int optlen)
opthdr->len = req.opt.len; // We only request one option at a time.
ACE_OS::memcpy (&opthdr[1], optval, optlen);
return ACE_OS::t_optmgmt (this->get_handle (), &req, &ret);
-
#elif defined (ACE_HAS_SVR4_TLI)
struct opthdr *opthdr = 0; /* See <sys/socket.h> for info on this format */
-
this->so_opt_req.flags = T_NEGOTIATE;
this->so_opt_req.opt.len = sizeof *opthdr + OPTLEN (optlen);
-
if (this->so_opt_req.opt.len > this->so_opt_req.opt.maxlen)
{
# if !defined (ACE_HAS_SET_T_ERRNO)
@@ -168,13 +141,11 @@ ACE_TLI::set_option (int level, int option, void *optval, int optlen)
# endif /* ACE_HAS_SET_T_ERRNO */
return -1;
}
-
opthdr = reinterpret_cast<struct opthdr *> (this->so_opt_req.opt.buf);
opthdr->level = level;
opthdr->name = option;
opthdr->len = OPTLEN (optlen);
ACE_OS::memcpy (OPTVAL (opthdr), optval, optlen);
-
return ACE_OS::t_optmgmt (this->get_handle (),
&this->so_opt_req,
&this->so_opt_ret);
@@ -186,7 +157,6 @@ ACE_TLI::set_option (int level, int option, void *optval, int optlen)
return -1;
#endif /* ACE_HAS_XTI, else ACE_HAS_SVR4_TLI */
}
-
int
ACE_TLI::get_option (int level, int option, void *optval, int &optlen)
{
@@ -208,7 +178,6 @@ ACE_TLI::get_option (int level, int option, void *optval, int &optlen)
# else
ACE_Auto_Array_Ptr<char> ret_opt_buf_p (ret.opt.buf);
# endif /* XPG5 vs XPG4 */
-
req.flags = T_CURRENT;
req.opt.len = sizeof *opthdr;
ret.opt.maxlen = sizeof (struct t_opthdr) + optlen;
@@ -231,13 +200,10 @@ ACE_TLI::get_option (int level, int option, void *optval, int &optlen)
return 0;
}
}
-
#elif defined (ACE_HAS_SVR4_TLI)
struct opthdr *opthdr = 0; /* See <sys/socket.h> for details on this format */
-
this->so_opt_req.flags = T_CHECK;
this->so_opt_ret.opt.len = sizeof *opthdr + OPTLEN (optlen);
-
if (this->so_opt_ret.opt.len > this->so_opt_ret.opt.maxlen)
{
#if !defined (ACE_HAS_SET_T_ERRNO)
@@ -247,7 +213,6 @@ ACE_TLI::get_option (int level, int option, void *optval, int &optlen)
#endif /* ACE_HAS_SET_T_ERRNO */
return -1;
}
-
opthdr = (struct opthdr *) this->so_opt_req.opt.buf;
opthdr->level = level;
opthdr->name = option;
@@ -267,8 +232,6 @@ ACE_TLI::get_option (int level, int option, void *optval, int &optlen)
return -1;
#endif /* ACE_HAS_SVR4_TLI */
}
-
ACE_END_VERSIONED_NAMESPACE_DECL
-
#endif /* ACE_HAS_TLI */