summaryrefslogtreecommitdiff
path: root/apps/Gateway
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 23:36:48 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 23:36:48 +0000
commit49097af368ad310515891bd3641651346853d289 (patch)
tree5b1c7ed2cf70c9cd1bc82380cf0ae61e4776fc91 /apps/Gateway
parent9c147fb20198273ad39e5e264d364d5d5b208156 (diff)
downloadATCD-49097af368ad310515891bd3641651346853d289.tar.gz
Added ACE_RCSID to apps/
Diffstat (limited to 'apps/Gateway')
-rw-r--r--apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp3
-rw-r--r--apps/Gateway/Gateway/Config_Files.cpp2
-rw-r--r--apps/Gateway/Gateway/Connection_Handler.cpp3
-rw-r--r--apps/Gateway/Gateway/Connection_Handler_Acceptor.cpp2
-rw-r--r--apps/Gateway/Gateway/Connection_Handler_Connector.cpp2
-rw-r--r--apps/Gateway/Gateway/Event_Channel.cpp4
-rw-r--r--apps/Gateway/Gateway/Event_Forwarding_Discriminator.cpp3
-rw-r--r--apps/Gateway/Gateway/File_Parser.cpp5
-rw-r--r--apps/Gateway/Gateway/Gateway.cpp6
-rw-r--r--apps/Gateway/Gateway/Options.cpp3
-rw-r--r--apps/Gateway/Gateway/gatewayd.cpp2
-rw-r--r--apps/Gateway/Peer/Options.cpp3
-rw-r--r--apps/Gateway/Peer/Peer.cpp2
-rw-r--r--apps/Gateway/Peer/peerd.cpp2
14 files changed, 36 insertions, 6 deletions
diff --git a/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp b/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
index b76d4191517..71e1be62178 100644
--- a/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
+++ b/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
@@ -1,9 +1,12 @@
// $Id$
#define ACE_BUILD_SVC_DLL
+
#include "Event_Channel.h"
#include "Concrete_Connection_Handlers.h"
+ACE_RCSID(Gateway, Concrete_Connection_Handlers, "$Id$")
+
Consumer_Handler::Consumer_Handler (const Connection_Config_Info &pci)
: Connection_Handler (pci)
{
diff --git a/apps/Gateway/Gateway/Config_Files.cpp b/apps/Gateway/Gateway/Config_Files.cpp
index 5be544d1863..112de597bd3 100644
--- a/apps/Gateway/Gateway/Config_Files.cpp
+++ b/apps/Gateway/Gateway/Config_Files.cpp
@@ -5,6 +5,8 @@
#include "Config_Files.h"
#include "Options.h"
+ACE_RCSID(Gateway, Config_Files, "$Id$")
+
// This fixes a nasty bug with cfront-based compilers (like
// Centerline).
typedef FP::Return_Type FP_RETURN_TYPE;
diff --git a/apps/Gateway/Gateway/Connection_Handler.cpp b/apps/Gateway/Gateway/Connection_Handler.cpp
index 7072ce940a3..95212a7b2c7 100644
--- a/apps/Gateway/Gateway/Connection_Handler.cpp
+++ b/apps/Gateway/Gateway/Connection_Handler.cpp
@@ -1,9 +1,12 @@
// $Id$
#define ACE_BUILD_SVC_DLL
+
#include "Event_Channel.h"
#include "Concrete_Connection_Handlers.h"
+ACE_RCSID(Gateway, Connection_Handler, "$Id$")
+
Event_Channel *
Connection_Handler::event_channel (void) const
{
diff --git a/apps/Gateway/Gateway/Connection_Handler_Acceptor.cpp b/apps/Gateway/Gateway/Connection_Handler_Acceptor.cpp
index 4f399c2b721..90c251ae8cc 100644
--- a/apps/Gateway/Gateway/Connection_Handler_Acceptor.cpp
+++ b/apps/Gateway/Gateway/Connection_Handler_Acceptor.cpp
@@ -5,6 +5,8 @@
#include "Event_Channel.h"
#include "Connection_Handler_Acceptor.h"
+ACE_RCSID(Gateway, Connection_Handler_Acceptor, "$Id$")
+
int
Connection_Handler_Acceptor::make_svc_handler (Connection_Handler *&ch)
{
diff --git a/apps/Gateway/Gateway/Connection_Handler_Connector.cpp b/apps/Gateway/Gateway/Connection_Handler_Connector.cpp
index 218d049977f..d5a250cec60 100644
--- a/apps/Gateway/Gateway/Connection_Handler_Connector.cpp
+++ b/apps/Gateway/Gateway/Connection_Handler_Connector.cpp
@@ -2,6 +2,8 @@
#include "Connection_Handler_Connector.h"
+ACE_RCSID(Gateway, Connection_Handler_Connector, "$Id$")
+
Connection_Handler_Connector::Connection_Handler_Connector (void)
{
}
diff --git a/apps/Gateway/Gateway/Event_Channel.cpp b/apps/Gateway/Gateway/Event_Channel.cpp
index 159f91456c4..c2a4a350c6f 100644
--- a/apps/Gateway/Gateway/Event_Channel.cpp
+++ b/apps/Gateway/Gateway/Event_Channel.cpp
@@ -1,10 +1,12 @@
-/* -*- C++ -*- */
// $Id$
#define ACE_BUILD_SVC_DLL
+
#include "Connection_Handler_Connector.h"
#include "Event_Channel.h"
+ACE_RCSID(Gateway, Event_Channel, "$Id$")
+
Event_Channel::~Event_Channel (void)
{
}
diff --git a/apps/Gateway/Gateway/Event_Forwarding_Discriminator.cpp b/apps/Gateway/Gateway/Event_Forwarding_Discriminator.cpp
index 8bda0e85a4d..9e33509a29f 100644
--- a/apps/Gateway/Gateway/Event_Forwarding_Discriminator.cpp
+++ b/apps/Gateway/Gateway/Event_Forwarding_Discriminator.cpp
@@ -1,4 +1,3 @@
-/* -*- C++ -*- */
// $Id$
#if !defined (_CONSUMER_MAP_C)
@@ -6,6 +5,8 @@
#include "Event_Forwarding_Discriminator.h"
+ACE_RCSID(Gateway, Event_Forwarding_Discriminator, "$Id$")
+
// Bind the Event_Key to the INT_ID.
int
diff --git a/apps/Gateway/Gateway/File_Parser.cpp b/apps/Gateway/Gateway/File_Parser.cpp
index bfde7a6911e..dff477b121c 100644
--- a/apps/Gateway/Gateway/File_Parser.cpp
+++ b/apps/Gateway/Gateway/File_Parser.cpp
@@ -1,11 +1,14 @@
-#if !defined (FILE_PARSER_C)
// $Id$
+#if !defined (FILE_PARSER_C)
+
#define FILE_PARSER_C
#include "ace/OS.h"
#include "File_Parser.h"
+ACE_RCSID(Gateway, File_Parser, "$Id$")
+
// This fixes a nasty bug with cfront-based compilers (like
// Centerline).
typedef FP::Return_Type FP_RETURN_TYPE;
diff --git a/apps/Gateway/Gateway/Gateway.cpp b/apps/Gateway/Gateway/Gateway.cpp
index 9fa8f5ae4f0..c372ef54e11 100644
--- a/apps/Gateway/Gateway/Gateway.cpp
+++ b/apps/Gateway/Gateway/Gateway.cpp
@@ -1,12 +1,14 @@
-/* -*- C++ -*- */
// $Id$
#define ACE_BUILD_SVC_DLL
-#include "Config_Files.h"
+
#include "ace/Service_Config.h"
+#include "Config_Files.h"
#include "Event_Channel.h"
#include "Gateway.h"
+ACE_RCSID(Gateway, Gateway, "$Id$")
+
class ACE_Svc_Export Gateway : public ACE_Service_Object
// = TITLE
// Integrates the whole Gateway application.
diff --git a/apps/Gateway/Gateway/Options.cpp b/apps/Gateway/Gateway/Options.cpp
index 0d93e4cd7fa..ae3fae96ef3 100644
--- a/apps/Gateway/Gateway/Options.cpp
+++ b/apps/Gateway/Gateway/Options.cpp
@@ -1,4 +1,3 @@
-/* -*- C++ -*- */
// $Id$
#define ACE_BUILD_SVC_DLL
@@ -7,6 +6,8 @@
#include "Event.h"
#include "Options.h"
+ACE_RCSID(Gateway, Options, "$Id$")
+
// Static initialization.
Options *Options::instance_ = 0;
diff --git a/apps/Gateway/Gateway/gatewayd.cpp b/apps/Gateway/Gateway/gatewayd.cpp
index 213400fcd60..a1f6ff4bc14 100644
--- a/apps/Gateway/Gateway/gatewayd.cpp
+++ b/apps/Gateway/Gateway/gatewayd.cpp
@@ -21,6 +21,8 @@
#include "ace/Service_Config.h"
#include "Gateway.h"
+ACE_RCSID(Gateway, gatewayd, "$Id$")
+
int
main (int argc, char *argv[])
{
diff --git a/apps/Gateway/Peer/Options.cpp b/apps/Gateway/Peer/Options.cpp
index 1e6a2043784..a51a9041ace 100644
--- a/apps/Gateway/Peer/Options.cpp
+++ b/apps/Gateway/Peer/Options.cpp
@@ -1,9 +1,12 @@
// $Id$
+
#define ACE_BUILD_SVC_DLL
#include "ace/Get_Opt.h"
#include "Options.h"
+ACE_RCSID(Peer, Options, "$Id$")
+
// Static initialization.
Options *Options::instance_ = 0;
diff --git a/apps/Gateway/Peer/Peer.cpp b/apps/Gateway/Peer/Peer.cpp
index c6c4f0d0b6a..21abf58a8f7 100644
--- a/apps/Gateway/Peer/Peer.cpp
+++ b/apps/Gateway/Peer/Peer.cpp
@@ -4,6 +4,8 @@
#include "Peer.h"
+ACE_RCSID(Peer, Peer, "$Id$")
+
Peer_Handler::Peer_Handler (void)
: connection_id_ (0),
msg_frag_ (0),
diff --git a/apps/Gateway/Peer/peerd.cpp b/apps/Gateway/Peer/peerd.cpp
index 87b26ab5188..94df916851e 100644
--- a/apps/Gateway/Peer/peerd.cpp
+++ b/apps/Gateway/Peer/peerd.cpp
@@ -20,6 +20,8 @@
#include "Peer.h"
+ACE_RCSID(Peer, peerd, "$Id$")
+
int
main (int argc, char *argv[])
{