summaryrefslogtreecommitdiff
path: root/ace/Sockets/IPC_SAP.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Sockets/IPC_SAP.i')
-rw-r--r--ace/Sockets/IPC_SAP.i37
1 files changed, 37 insertions, 0 deletions
diff --git a/ace/Sockets/IPC_SAP.i b/ace/Sockets/IPC_SAP.i
new file mode 100644
index 00000000000..63ccc967711
--- /dev/null
+++ b/ace/Sockets/IPC_SAP.i
@@ -0,0 +1,37 @@
+/* -*- C++ -*- */
+// $Id$
+
+// IPC_SAP.i
+
+// Used to return the underlying handle_.
+
+ASYS_INLINE
+ACE_IPC_SAP::~ACE_IPC_SAP (void)
+{
+ // ACE_TRACE ("ACE_IPC_SAP::~ACE_IPC_SAP");
+}
+
+ASYS_INLINE ACE_HANDLE
+ACE_IPC_SAP::get_handle (void) const
+{
+ ACE_TRACE ("ACE_IPC_SAP::get_handle");
+ return this->handle_;
+}
+
+// Used to set the underlying handle_.
+
+ASYS_INLINE void
+ACE_IPC_SAP::set_handle (ACE_HANDLE handle)
+{
+ ACE_TRACE ("ACE_IPC_SAP::set_handle");
+ this->handle_ = handle;
+}
+
+// Provides access to the ACE_OS::ioctl system call.
+
+ASYS_INLINE int
+ACE_IPC_SAP::control (int cmd, void *arg) const
+{
+ ACE_TRACE ("ACE_IPC_SAP::control");
+ return ACE_OS::ioctl (this->handle_, cmd, arg);
+}