summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 22:55:22 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 22:55:22 +0000
commit551a94446aa93c7c20d4f9da9bb94f78405103be (patch)
tree7774cf0fef5bbe805a0e0817bb55ff8ad5489c7f /examples/Service_Configurator
parentaad27112435cdf14857ae35e05717c10533e0229 (diff)
downloadATCD-551a94446aa93c7c20d4f9da9bb94f78405103be.tar.gz
Added ACE_RCSID to examples/
Diffstat (limited to 'examples/Service_Configurator')
-rw-r--r--examples/Service_Configurator/IPC-tests/client/broadcast_client_test.cpp7
-rw-r--r--examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp3
-rw-r--r--examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp7
-rw-r--r--examples/Service_Configurator/IPC-tests/client/local_pipe_client_test.cpp5
-rw-r--r--examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp7
-rw-r--r--examples/Service_Configurator/IPC-tests/client/local_stream_client_test.cpp6
-rw-r--r--examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp5
-rw-r--r--examples/Service_Configurator/IPC-tests/client/remote_service_directory_test.cpp5
-rw-r--r--examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp5
-rw-r--r--examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp6
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.cpp5
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp6
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp2
-rw-r--r--examples/Service_Configurator/IPC-tests/server/Handle_Timeout.cpp4
-rw-r--r--examples/Service_Configurator/IPC-tests/server/server_test.cpp2
-rw-r--r--examples/Service_Configurator/Misc/Timer_Service.cpp2
-rw-r--r--examples/Service_Configurator/Misc/main.cpp2
24 files changed, 75 insertions, 32 deletions
diff --git a/examples/Service_Configurator/IPC-tests/client/broadcast_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/broadcast_client_test.cpp
index 3fc4cde16f0..a58558e0536 100644
--- a/examples/Service_Configurator/IPC-tests/client/broadcast_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/broadcast_client_test.cpp
@@ -1,13 +1,14 @@
-/* Tests out the broadcast service of the
// $Id$
- Internet domain IPC-SAP dgram abstraction. */
+// Tests out the broadcast service of the
+// Internet domain IPC-SAP dgram abstraction.
#include "ace/INET_Addr.h"
#include "ace/SOCK_Dgram_Bcast.h"
-
#include "ace/Get_Opt.h"
+ACE_RCSID(client, broadcast_client_test, "$Id$")
+
/* Name of the program. */
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp
index 98f7d59ec44..f4f5430f925 100644
--- a/examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp
@@ -1,4 +1,5 @@
// $Id$
+
// Tests out the UNIX domain IPC-SAP abstraction.
#include "ace/LSOCK_CODgram.h"
@@ -6,6 +7,8 @@
#include "ace/UNIX_Addr.h"
#include "ace/Get_Opt.h"
+ACE_RCSID(client, local_dgram_client_test, "$Id$")
+
#if defined (ACE_HAS_MSG) && !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
// Name of the program.
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp
index f02e1bf2a74..d75ca07e5ed 100644
--- a/examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp
@@ -1,13 +1,14 @@
-/* Send a file through ACE_FIFO communication channel by
// $Id$
- break it (the file) into pieces. */
+// Send a file through ACE_FIFO communication channel by
+// breaking it (the file) into pieces.
#include "ace/Mem_Map.h"
#include "ace/FIFO_Send_Msg.h"
-
#include "ace/Get_Opt.h"
+ACE_RCSID(client, local_fifo_client_test, "$Id$")
+
// Name of the program.
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/local_pipe_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/local_pipe_client_test.cpp
index a145a602fad..aaa3cda4d38 100644
--- a/examples/Service_Configurator/IPC-tests/client/local_pipe_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/local_pipe_client_test.cpp
@@ -1,14 +1,15 @@
-// Another test of UNIX domain IPC-SAP abstraction. This one opens 2
// $Id$
+// Another test of UNIX domain IPC-SAP abstraction. This one opens 2
// pipes and then ships certain ends over to the server to act as a
// filter!
#include "ace/LSOCK_Connector.h"
#include "ace/UNIX_Addr.h"
-
#include "ace/Get_Opt.h"
+ACE_RCSID(client, local_pipe_client_test, "$Id$")
+
#if defined (ACE_HAS_MSG) && !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
/* Name of the program. */
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp
index 2776139c802..c2ced0e670f 100644
--- a/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp
@@ -1,13 +1,14 @@
-/* Send a file through ACE_SPIPE communication channel by
// $Id$
- break it (the file) into pieces. */
+// Send a file through ACE_SPIPE communication channel by
+// breaking it (the file) into pieces.
#include "ace/Mem_Map.h"
#include "ace/SPIPE_Connector.h"
-
#include "ace/Get_Opt.h"
+ACE_RCSID(client, local_spipe_client_test, "$Id$")
+
#if defined (ACE_HAS_STREAM_PIPES)
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/local_stream_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/local_stream_client_test.cpp
index ff5a500c022..80d4915741b 100644
--- a/examples/Service_Configurator/IPC-tests/client/local_stream_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/local_stream_client_test.cpp
@@ -1,11 +1,13 @@
-/* Tests out the UNIX domain IPC-SAP abstraction. */
// $Id$
+// Tests out the UNIX domain IPC-SAP abstraction.
+
#include "ace/LSOCK_Connector.h"
#include "ace/UNIX_Addr.h"
-
#include "ace/Get_Opt.h"
+ACE_RCSID(client, local_stream_client_test, "$Id$")
+
#if defined (ACE_HAS_MSG) && !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
/* Name of the program. */
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp
index a193106be53..d433bdc938b 100644
--- a/examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp
@@ -1,13 +1,14 @@
-/* Tests out the Internet domain IPC-SAP dgram abstraction. */
// $Id$
+// Tests out the Internet domain IPC-SAP dgram abstraction.
#include "ace/Mem_Map.h"
#include "ace/SOCK_Dgram.h"
-
#include "ace/INET_Addr.h"
#include "ace/Get_Opt.h"
+ACE_RCSID(client, remote_dgram_client_test, "$Id$")
+
/* Name of the program. */
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/remote_service_directory_test.cpp b/examples/Service_Configurator/IPC-tests/client/remote_service_directory_test.cpp
index dc99a8c0176..b9af737a42d 100644
--- a/examples/Service_Configurator/IPC-tests/client/remote_service_directory_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/remote_service_directory_test.cpp
@@ -1,12 +1,13 @@
-// Test program for the INET IPC-SAPs...
// $Id$
-
+// Test program for the INET IPC-SAPs...
#include "ace/SOCK_Connector.h"
#include "ace/INET_Addr.h"
#include "ace/Get_Opt.h"
+ACE_RCSID(client, remote_service_directory_test, "$Id$")
+
// Port number to use.
static unsigned short port_number = ACE_DEFAULT_SERVICE_PORT;
diff --git a/examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp
index d439ea9ae88..8a7b2be7fcd 100644
--- a/examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp
@@ -1,14 +1,15 @@
-/* Test program for the INET IPC-SAPs... */
// $Id$
+// Test program for the INET IPC-SAPs...
#include "ace/Mem_Map.h"
-
#include "ace/SOCK_Connector.h"
#include "ace/SOCK_CODgram.h"
#include "ace/INET_Addr.h"
#include "ace/Get_Opt.h"
+ACE_RCSID(client, remote_stream_client_test, "$Id$")
+
/* Name of the program. */
static char *program_name;
diff --git a/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp
index 80931b584d4..62c1b522cf7 100644
--- a/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp
@@ -1,14 +1,14 @@
-/* Test program for the INET ACE_TLI-SAPs... */
// $Id$
+// Test program for the INET ACE_TLI-SAPs...
#include "ace/Mem_Map.h"
#include "ace/TLI_Connector.h"
#include "ace/INET_Addr.h"
-
-
#include "ace/Get_Opt.h"
+ACE_RCSID(client, remote_thr_stream_client_test, "$Id$")
+
#if defined (ACE_HAS_TLI)
/* Name of the program. */
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.cpp
index af490402337..8e385e411b5 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.cpp
@@ -1,6 +1,8 @@
-#include "Handle_Broadcast.h"
// $Id$
+#include "Handle_Broadcast.h"
+
+ACE_RCSID(server, Handle_Broadcast, "$Id$")
#if defined (SunOS4)
extern "C"
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.cpp
index c9224635829..2aae0279cb2 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.cpp
@@ -1,6 +1,8 @@
-#include "Handle_L_CODgram.h"
// $Id$
+#include "Handle_L_CODgram.h"
+
+ACE_RCSID(server, Handle_L_CODgram, "$Id$")
#if defined (SunOS4)
extern "C"
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.cpp
index 007630279f2..4d381a6d34b 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.cpp
@@ -1,6 +1,8 @@
-#include "Handle_L_Dgram.h"
// $Id$
+#include "Handle_L_Dgram.h"
+
+ACE_RCSID(server, Handle_L_Dgram, "$Id$")
#if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.cpp
index 79fd3c65331..42e6f2cd46f 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.cpp
@@ -1,6 +1,9 @@
-#include "Handle_L_FIFO.h"
// $Id$
+#include "Handle_L_FIFO.h"
+
+ACE_RCSID(server, Handle_L_FIFO, "$Id$")
+
#if defined (SunOS4)
extern "C"
{
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.cpp
index c216e03cecb..02c567897b4 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.cpp
@@ -1,6 +1,8 @@
-#include "Handle_L_Pipe.h"
// $Id$
+#include "Handle_L_Pipe.h"
+
+ACE_RCSID(server, Handle_L_Pipe, "$Id$")
#if defined (SunOS4)
extern "C"
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.cpp
index d2ccc95b439..35830522cdd 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.cpp
@@ -1,6 +1,8 @@
-#include "Handle_L_SPIPE.h"
// $Id$
+#include "Handle_L_SPIPE.h"
+
+ACE_RCSID(server, Handle_L_SPIPE, "$Id$")
#if !defined (__ACE_INLINE__)
#include "Handle_L_SPIPE.i"
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp
index d7f84013629..0fe72fd79a7 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.cpp
@@ -1,8 +1,11 @@
-#if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
// $Id$
#include "Handle_L_Stream.h"
+ACE_RCSID(server, Handle_L_Stream, "$Id$")
+
+#if !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
+
/* Static variables. */
const char *Handle_L_Stream::DEFAULT_RENDEZVOUS = "/tmp/foo_stream";
@@ -14,4 +17,5 @@ char *Handle_L_Stream::login_name = 0;
Handle_L_Stream local_stream;
ACE_Service_Object_Type ls (&local_stream, "Local_Stream");
+
#endif /* ACE_LACKS_UNIX_DOMAIN_SOCKETS */
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.cpp
index a2f8db96fb5..37649b16566 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.cpp
@@ -1,6 +1,8 @@
-#include "Handle_R_Dgram.h"
// $Id$
+#include "Handle_R_Dgram.h"
+
+ACE_RCSID(server, Handle_R_Dgram, "$Id$")
#if defined (SunOS4)
extern "C"
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.cpp
index 294386ec53d..908ffdf5d56 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.cpp
@@ -1,6 +1,8 @@
-#include "Handle_R_Stream.h"
// $Id$
+#include "Handle_R_Stream.h"
+
+ACE_RCSID(server, Handle_R_Stream, "$Id$")
#if defined (SunOS4)
extern "C"
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp
index c4102aa31f9..c1e8cd8af9c 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp
@@ -8,6 +8,8 @@
#include "ace/TLI_Acceptor.h"
#include "Handle_Thr_Stream.h"
+ACE_RCSID(server, Handle_Thr_Stream, "$Id$")
+
#if defined (ACE_HAS_THREADS)
#if !defined (__ACE_INLINE__)
diff --git a/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.cpp b/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.cpp
index ffe00503856..74081e1581e 100644
--- a/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/Handle_Timeout.cpp
@@ -1,6 +1,8 @@
-#include "Handle_Timeout.h"
// $Id$
+#include "Handle_Timeout.h"
+
+ACE_RCSID(server, Handle_Timeout, "$Id$")
#if defined (SunOS4)
extern "C"
diff --git a/examples/Service_Configurator/IPC-tests/server/server_test.cpp b/examples/Service_Configurator/IPC-tests/server/server_test.cpp
index a1dd1e36ce4..29dc76b5792 100644
--- a/examples/Service_Configurator/IPC-tests/server/server_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/server/server_test.cpp
@@ -4,6 +4,8 @@
#include "ace/Service_Config.h"
+ACE_RCSID(server, server_test, "$Id$")
+
int
main (int argc, char *argv[])
{
diff --git a/examples/Service_Configurator/Misc/Timer_Service.cpp b/examples/Service_Configurator/Misc/Timer_Service.cpp
index d26432df012..e86ce56f6ad 100644
--- a/examples/Service_Configurator/Misc/Timer_Service.cpp
+++ b/examples/Service_Configurator/Misc/Timer_Service.cpp
@@ -2,6 +2,8 @@
#include "Timer_Service.h"
+ACE_RCSID(Misc, Timer_Service, "$Id$")
+
int
Timer_Service_1::init (int argc, char *argv[])
{
diff --git a/examples/Service_Configurator/Misc/main.cpp b/examples/Service_Configurator/Misc/main.cpp
index 9b04215fe71..df1a99a2575 100644
--- a/examples/Service_Configurator/Misc/main.cpp
+++ b/examples/Service_Configurator/Misc/main.cpp
@@ -21,6 +21,8 @@
#include "ace/Service_Config.h"
#include "Timer_Service.h"
+ACE_RCSID(Misc, main, "$Id$")
+
// Create an object that will insert the <Timer_Service> into the list
// of statically linked services that the <ACE_Service_Config> will
// process at run-time.