summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-10-11 22:01:04 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-10-11 22:01:04 +0000
commit66a56467be70e8113dd3b22e03f984af65fd38b9 (patch)
tree13b8c306b3feda14c9baa621eccff53705413b72 /TAO/tao/Strategies
parentcab57705122a085ee95faeb979faf95c2e7924e3 (diff)
downloadATCD-66a56467be70e8113dd3b22e03f984af65fd38b9.tar.gz
ChangeLogTag: Mon Oct 11 17:46:48 2004 Irfan Pyarali <irfan@oomworks.com>
Diffstat (limited to 'TAO/tao/Strategies')
-rw-r--r--TAO/tao/Strategies/DIOP_Acceptor.cpp4
-rw-r--r--TAO/tao/Strategies/DIOP_Connector.cpp4
-rw-r--r--TAO/tao/Strategies/DIOP_Endpoint.cpp8
-rw-r--r--TAO/tao/Strategies/DIOP_Factory.cpp2
-rw-r--r--TAO/tao/Strategies/DIOP_Profile.cpp6
-rw-r--r--TAO/tao/Strategies/DIOP_Transport.cpp2
6 files changed, 13 insertions, 13 deletions
diff --git a/TAO/tao/Strategies/DIOP_Acceptor.cpp b/TAO/tao/Strategies/DIOP_Acceptor.cpp
index e0243d0caf1..6764dde74e4 100644
--- a/TAO/tao/Strategies/DIOP_Acceptor.cpp
+++ b/TAO/tao/Strategies/DIOP_Acceptor.cpp
@@ -27,7 +27,7 @@ ACE_RCSID (Strategies,
"$Id$")
TAO_DIOP_Acceptor::TAO_DIOP_Acceptor (CORBA::Boolean flag)
- : TAO_Acceptor (TAO_TAG_UDP_PROFILE),
+ : TAO_Acceptor (TAO_TAG_DIOP_PROFILE),
addrs_ (0),
hosts_ (0),
endpoint_count_ (0),
@@ -137,7 +137,7 @@ TAO_DIOP_Acceptor::create_shared_profile (const TAO::ObjectKey &object_key,
for (TAO_PHandle i = 0; i != mprofile.profile_count (); ++i)
{
pfile = mprofile.get_profile (i);
- if (pfile->tag () == TAO_TAG_UDP_PROFILE)
+ if (pfile->tag () == TAO_TAG_DIOP_PROFILE)
{
iiop_profile = ACE_dynamic_cast (TAO_DIOP_Profile *,
pfile);
diff --git a/TAO/tao/Strategies/DIOP_Connector.cpp b/TAO/tao/Strategies/DIOP_Connector.cpp
index 9729b7f68e9..54cc6fc956e 100644
--- a/TAO/tao/Strategies/DIOP_Connector.cpp
+++ b/TAO/tao/Strategies/DIOP_Connector.cpp
@@ -42,7 +42,7 @@ template class ACE_Hash_Map_Reverse_Iterator_Ex<ACE_INET_Addr, TAO_DIOP_Connecti
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
TAO_DIOP_Connector::TAO_DIOP_Connector (CORBA::Boolean flag)
- : TAO_Connector (TAO_TAG_UDP_PROFILE),
+ : TAO_Connector (TAO_TAG_DIOP_PROFILE),
lite_flag_ (flag)
{
}
@@ -237,7 +237,7 @@ TAO_DIOP_Connector::object_key_delimiter (void) const
TAO_DIOP_Endpoint *
TAO_DIOP_Connector::remote_endpoint (TAO_Endpoint *endpoint)
{
- if (endpoint->tag () != TAO_TAG_UDP_PROFILE)
+ if (endpoint->tag () != TAO_TAG_DIOP_PROFILE)
return 0;
TAO_DIOP_Endpoint *diop_endpoint =
diff --git a/TAO/tao/Strategies/DIOP_Endpoint.cpp b/TAO/tao/Strategies/DIOP_Endpoint.cpp
index deeb5daba00..9ac0cdde44f 100644
--- a/TAO/tao/Strategies/DIOP_Endpoint.cpp
+++ b/TAO/tao/Strategies/DIOP_Endpoint.cpp
@@ -28,7 +28,7 @@ ACE_RCSID (Strategies,
TAO_DIOP_Endpoint::TAO_DIOP_Endpoint (const ACE_INET_Addr &addr,
int use_dotted_decimal_addresses)
- : TAO_Endpoint (TAO_TAG_UDP_PROFILE)
+ : TAO_Endpoint (TAO_TAG_DIOP_PROFILE)
, host_ ()
, port_ (0)
, object_addr_ (addr)
@@ -42,7 +42,7 @@ TAO_DIOP_Endpoint::TAO_DIOP_Endpoint (const char *host,
CORBA::UShort port,
const ACE_INET_Addr &addr,
CORBA::Short priority)
- : TAO_Endpoint (TAO_TAG_UDP_PROFILE,
+ : TAO_Endpoint (TAO_TAG_DIOP_PROFILE,
priority)
, host_ ()
, port_ (port)
@@ -55,7 +55,7 @@ TAO_DIOP_Endpoint::TAO_DIOP_Endpoint (const char *host,
}
TAO_DIOP_Endpoint::TAO_DIOP_Endpoint (void)
- : TAO_Endpoint (TAO_TAG_UDP_PROFILE),
+ : TAO_Endpoint (TAO_TAG_DIOP_PROFILE),
host_ (),
port_ (0),
object_addr_ (),
@@ -67,7 +67,7 @@ TAO_DIOP_Endpoint::TAO_DIOP_Endpoint (void)
TAO_DIOP_Endpoint::TAO_DIOP_Endpoint (const char *host,
CORBA::UShort port,
CORBA::Short priority)
- : TAO_Endpoint (TAO_TAG_UDP_PROFILE),
+ : TAO_Endpoint (TAO_TAG_DIOP_PROFILE),
host_ (),
port_ (port),
object_addr_ (),
diff --git a/TAO/tao/Strategies/DIOP_Factory.cpp b/TAO/tao/Strategies/DIOP_Factory.cpp
index 8146d185a54..ef5755dde44 100644
--- a/TAO/tao/Strategies/DIOP_Factory.cpp
+++ b/TAO/tao/Strategies/DIOP_Factory.cpp
@@ -18,7 +18,7 @@ ACE_RCSID (Strategies,
static const char prefix_[] = "diop";
TAO_DIOP_Protocol_Factory::TAO_DIOP_Protocol_Factory (void)
- : TAO_Protocol_Factory (TAO_TAG_UDP_PROFILE),
+ : TAO_Protocol_Factory (TAO_TAG_DIOP_PROFILE),
major_ (TAO_DEF_GIOP_MAJOR),
minor_ (TAO_DEF_GIOP_MINOR)
{
diff --git a/TAO/tao/Strategies/DIOP_Profile.cpp b/TAO/tao/Strategies/DIOP_Profile.cpp
index 6f7d708307a..44d469172ce 100644
--- a/TAO/tao/Strategies/DIOP_Profile.cpp
+++ b/TAO/tao/Strategies/DIOP_Profile.cpp
@@ -41,7 +41,7 @@ TAO_DIOP_Profile::TAO_DIOP_Profile (const ACE_INET_Addr &addr,
const TAO::ObjectKey &object_key,
const TAO_GIOP_Message_Version &version,
TAO_ORB_Core *orb_core)
- : TAO_Profile (TAO_TAG_UDP_PROFILE,
+ : TAO_Profile (TAO_TAG_DIOP_PROFILE,
orb_core,
object_key,
version),
@@ -57,7 +57,7 @@ TAO_DIOP_Profile::TAO_DIOP_Profile (const char* host,
const ACE_INET_Addr &addr,
const TAO_GIOP_Message_Version &version,
TAO_ORB_Core *orb_core)
- : TAO_Profile (TAO_TAG_UDP_PROFILE,
+ : TAO_Profile (TAO_TAG_DIOP_PROFILE,
orb_core,
object_key,
version),
@@ -67,7 +67,7 @@ TAO_DIOP_Profile::TAO_DIOP_Profile (const char* host,
}
TAO_DIOP_Profile::TAO_DIOP_Profile (TAO_ORB_Core *orb_core)
- : TAO_Profile (TAO_TAG_UDP_PROFILE,
+ : TAO_Profile (TAO_TAG_DIOP_PROFILE,
orb_core,
TAO_GIOP_Message_Version (TAO_DEF_GIOP_MAJOR, TAO_DEF_GIOP_MINOR)),
endpoint_ (),
diff --git a/TAO/tao/Strategies/DIOP_Transport.cpp b/TAO/tao/Strategies/DIOP_Transport.cpp
index f10c2eb1c80..b52f03de14c 100644
--- a/TAO/tao/Strategies/DIOP_Transport.cpp
+++ b/TAO/tao/Strategies/DIOP_Transport.cpp
@@ -31,7 +31,7 @@ ACE_RCSID (tao, DIOP_Transport, "$Id$")
TAO_DIOP_Transport::TAO_DIOP_Transport (TAO_DIOP_Connection_Handler *handler,
TAO_ORB_Core *orb_core,
CORBA::Boolean flag)
- : TAO_Transport (TAO_TAG_UDP_PROFILE,
+ : TAO_Transport (TAO_TAG_DIOP_PROFILE,
orb_core)
, connection_handler_ (handler)
, messaging_object_ (0)