summaryrefslogtreecommitdiff
path: root/trunk/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp')
-rw-r--r--trunk/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/trunk/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp b/trunk/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp
new file mode 100644
index 00000000000..8a0a6a46033
--- /dev/null
+++ b/trunk/ACE/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp
@@ -0,0 +1,22 @@
+// $Id$
+
+#include "Handle_L_Stream.h"
+
+ACE_RCSID(server, Handle_L_Stream, "$Id$")
+
+#if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
+
+// Static variables.
+
+const ACE_TCHAR *Handle_L_Stream::DEFAULT_RENDEZVOUS = ACE_TEXT ("/tmp/foo_stream");
+char *Handle_L_Stream::login_name = 0;
+char Handle_L_Stream::login[ACE_MAX_USERID];
+
+#if !defined (__ACE_INLINE__)
+#include "Handle_L_Stream.inl"
+#endif /* __ACE_INLINE__ */
+
+Handle_L_Stream local_stream;
+ACE_Service_Object_Type ls (&local_stream, ACE_TEXT ("Local_Stream"));
+
+#endif /* ACE_LACKS_UNIX_DOMAIN_SOCKETS */