summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Endpoint.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-08 17:01:38 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-08 17:01:38 +0000
commit304706df1ef2600a9713122b030305fee07b945a (patch)
tree2ab631d155c7ad8c42e06565c0ce8fd200531042 /TAO/tao/IIOP_Endpoint.cpp
parent35303ce4d93f4afceef5acf0b8952132c23889db (diff)
downloadATCD-304706df1ef2600a9713122b030305fee07b945a.tar.gz
ChangeLogTag: Sun Jun 30 22:22:05 2002 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/IIOP_Endpoint.cpp')
-rw-r--r--TAO/tao/IIOP_Endpoint.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/TAO/tao/IIOP_Endpoint.cpp b/TAO/tao/IIOP_Endpoint.cpp
index 55cc2626a5d..ccb4521349f 100644
--- a/TAO/tao/IIOP_Endpoint.cpp
+++ b/TAO/tao/IIOP_Endpoint.cpp
@@ -17,7 +17,7 @@ TAO_IIOP_Endpoint::TAO_IIOP_Endpoint (const ACE_INET_Addr &addr,
host_ (),
port_ (683), // default port (IANA assigned)
object_addr_ (addr),
- /* hint_ (0), */
+ object_addr_set_ (0),
next_ (0)
{
this->set (addr, use_dotted_decimal_addresses);
@@ -30,13 +30,11 @@ TAO_IIOP_Endpoint::TAO_IIOP_Endpoint (const char *host,
host_ (),
port_ (port),
object_addr_ (addr),
- /* hint_ (0), */
+ object_addr_set_ (0),
next_ (0)
{
if (host != 0)
this->host_ = host;
-
- this->object_addr_.set_type (-1);
}
TAO_IIOP_Endpoint::TAO_IIOP_Endpoint (void)
@@ -44,10 +42,9 @@ TAO_IIOP_Endpoint::TAO_IIOP_Endpoint (void)
host_ (),
port_ (683), // default port (IANA assigned)
object_addr_ (),
- /* hint_ (0), */
+ object_addr_set_ (0),
next_ (0)
{
- this->object_addr_.set_type (-1);
}
TAO_IIOP_Endpoint::TAO_IIOP_Endpoint (const char *host,
@@ -57,19 +54,17 @@ TAO_IIOP_Endpoint::TAO_IIOP_Endpoint (const char *host,
host_ (),
port_ (port),
object_addr_ (),
- /* hint_ (0),*/
+ object_addr_set_ (0),
next_ (0)
{
if (host != 0)
this->host_ = host;
- this->object_addr_.set_type (-1);
this->priority (priority);
}
TAO_IIOP_Endpoint::~TAO_IIOP_Endpoint (void)
{
-
}
int