summaryrefslogtreecommitdiff
path: root/TAO/tao/params.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-07 06:03:29 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-11-07 06:03:29 +0000
commit333584d39b6f690f0449ef6380c49f38b0dad21b (patch)
treec181e298a6c2e462f57fe8f82246c89a1125ce42 /TAO/tao/params.cpp
parent773626f0a3b6c011c766a14af07f8eb219f525c6 (diff)
downloadATCD-333584d39b6f690f0449ef6380c49f38b0dad21b.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/params.cpp')
-rw-r--r--TAO/tao/params.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp
index 76f8c8d4077..fdcda60a216 100644
--- a/TAO/tao/params.cpp
+++ b/TAO/tao/params.cpp
@@ -1,5 +1,49 @@
#include "tao/corba.h"
+void
+TAO_ORB_Parameters::name_service_ior (CORBA::String ns)
+{
+ this->name_service_ior_ = ns;
+}
+
+// Get the address on which we're listening.
+
+const ACE_INET_Addr &
+TAO_ORB_Parameters::addr (void)
+{
+ return this->addr_;
+}
+
+void
+TAO_ORB_Parameters::name_service_ior (CORBA::String ns)
+{
+ this->name_service_ior_ = ns;
+}
+
+// Set the IOR of our name service.
+
+CORBA::String
+TAO_ORB_Parameters::name_service_ior (void)
+{
+ return this->name_service_ior_;
+}
+
+// Get the IOR of our name service.
+
+void
+TAO_ORB_Parameters::name_service_port (CORBA::UShort port)
+{
+ this->name_service_port_ = port;
+}
+
+// Set the port of our name service.
+
+CORBA::UShort
+TAO_ORB_Parameters::name_service_port (void)
+{
+ return this->name_service_port_;
+}
+
void
TAO_OA_Parameters::demux_strategy (const char* strategy)
{