summaryrefslogtreecommitdiff
path: root/ace/Sockets/LSOCK_CODgram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Sockets/LSOCK_CODgram.cpp')
-rw-r--r--ace/Sockets/LSOCK_CODgram.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/ace/Sockets/LSOCK_CODgram.cpp b/ace/Sockets/LSOCK_CODgram.cpp
new file mode 100644
index 00000000000..5bce9e7887d
--- /dev/null
+++ b/ace/Sockets/LSOCK_CODgram.cpp
@@ -0,0 +1,56 @@
+// LSOCK_CODgram.cpp
+// $Id$
+
+#include "ace/LSOCK_CODgram.h"
+#include "ace/Log_Msg.h"
+
+ACE_RCSID(ace, LSOCK_CODgram, "$Id$")
+
+#if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
+
+#if defined (ACE_LACKS_INLINE_FUNCTIONS)
+#include "ace/LSOCK_CODgram.i"
+#endif
+
+ACE_ALLOC_HOOK_DEFINE(ACE_LSOCK_CODgram)
+
+void
+ACE_LSOCK_CODgram::dump (void) const
+{
+ ACE_TRACE ("ACE_LSOCK_CODgram::dump");
+
+ ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
+ ACE_SOCK_CODgram::dump ();
+ ACE_LSOCK::dump ();
+ ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
+}
+
+/* Here's the general-purpose open routine. */
+
+int
+ACE_LSOCK_CODgram::open (const ACE_Addr &remote,
+ const ACE_Addr &local,
+ int protocol_family,
+ int protocol)
+{
+ ACE_TRACE ("ACE_LSOCK_CODgram::open");
+ if (ACE_SOCK_CODgram::open (remote, local, protocol_family,
+ protocol) == -1)
+ return -1;
+ ACE_LSOCK::set_handle (this->get_handle ());
+ return 0;
+}
+
+/* Create a local ACE_SOCK datagram. */
+
+ACE_LSOCK_CODgram::ACE_LSOCK_CODgram (const ACE_Addr &remote,
+ const ACE_Addr &local,
+ int protocol_family,
+ int protocol)
+{
+ ACE_TRACE ("ACE_LSOCK_CODgram::ACE_LSOCK_CODgram");
+ if (this->open (remote, local, protocol_family,
+ protocol) == -1)
+ ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("%p\n"), ACE_LIB_TEXT ("ACE_LSOCK_CODgram")));
+}
+#endif /* ACE_LACKS_UNIX_DOMAIN_SOCKETS */