summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-31 16:01:04 +0000
committercrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-31 16:01:04 +0000
commit128312036971dc836335447679b16edac3cdf38f (patch)
tree76912fe714210c5ee50cb930489310b02c5e92fc
parent275e4c5da486f4cb6c06aff0dc836c2eeca1c880 (diff)
downloadATCD-128312036971dc836335447679b16edac3cdf38f.tar.gz
ChangeLogTag: Sat Aug 31 15:59:07 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/RTCORBA/Server_Protocol/server.cpp2
-rw-r--r--TAO/utils/catior/catior.cpp2
-rw-r--r--TAO/utils/nslist/nslist.cpp17
4 files changed, 14 insertions, 14 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index d4d16f08b47..f561a8c02c4 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Sat Aug 31 15:59:07 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
+
+ * tests/RTCORBA/Server_Protocol/server.cpp:
+ * utils/catior/catior.cpp:
+ * utils/nslist/nslist.cpp:
+ Change to TAO_TAG_IIOP_PROFILE to IOP::TAG_INTERNET_IOP.
+
Sat Aug 31 01:29:05 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
* tao/Makefile.dirs: (Added) Specifies the DIRS= list of directories
diff --git a/TAO/tests/RTCORBA/Server_Protocol/server.cpp b/TAO/tests/RTCORBA/Server_Protocol/server.cpp
index 99c8f19d00d..feee0fb030c 100644
--- a/TAO/tests/RTCORBA/Server_Protocol/server.cpp
+++ b/TAO/tests/RTCORBA/Server_Protocol/server.cpp
@@ -121,7 +121,7 @@ check_default_server_protocol (CORBA::ORB_ptr orb
protocols[i].transport_protocol_properties;
// Print properties.
- if (protocol_type == TAO_TAG_IIOP_PROFILE)
+ if (protocol_type == IOP::TAG_INTERNET_IOP)
{
RTCORBA::TCPProtocolProperties_var tcp_properties =
RTCORBA::TCPProtocolProperties::_narrow (properties.in
diff --git a/TAO/utils/catior/catior.cpp b/TAO/utils/catior/catior.cpp
index b8e108f3419..1bc4d5987d6 100644
--- a/TAO/utils/catior/catior.cpp
+++ b/TAO/utils/catior/catior.cpp
@@ -249,7 +249,7 @@ catior (char* str
continue;
}
- if (tag == TAO_TAG_IIOP_PROFILE)
+ if (tag == IOP::TAG_INTERNET_IOP)
{
ACE_DEBUG ((LM_DEBUG, "%{"));
continue_decoding = cat_iiop_profile (stream);
diff --git a/TAO/utils/nslist/nslist.cpp b/TAO/utils/nslist/nslist.cpp
index 373ef784d64..2c93a0b84aa 100644
--- a/TAO/utils/nslist/nslist.cpp
+++ b/TAO/utils/nslist/nslist.cpp
@@ -31,25 +31,18 @@ static void list_context (CosNaming::NamingContext_ptr nc,
static void
get_tag_name (CORBA::ULong tag, ACE_CString& tag_string)
{
- switch(tag)
- {
- case TAO_TAG_IIOP_PROFILE:
+ if (tag == IOP::TAG_INTERNET_IOP)
tag_string = "IIOP";
- break;
- case TAO_TAG_UIOP_PROFILE:
+ else if (tag == TAO_TAG_UIOP_PROFILE)
tag_string = "UIOP";
- break;
- case TAO_TAG_SHMEM_PROFILE:
+ else if (tag == TAO_TAG_SHMEM_PROFILE)
tag_string = "SHMEM";
- break;
#ifdef TAO_TAG_UDP_PROFILE
- case TAO_TAG_UDP_PROFILE:
+ else if (tag == TAO_TAG_UDP_PROFILE)
tag_string = "GIOP over UDP";
#endif /* TAO_TAG_UDP_PROFILE */
- default:
+ else
tag_string = "Unknown tag: " + tag;
- break;
- }
}