summaryrefslogtreecommitdiff
path: root/TAO/tao/params.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/params.i')
-rw-r--r--TAO/tao/params.i36
1 files changed, 36 insertions, 0 deletions
diff --git a/TAO/tao/params.i b/TAO/tao/params.i
index d900d18a967..04e3f7575ec 100644
--- a/TAO/tao/params.i
+++ b/TAO/tao/params.i
@@ -163,6 +163,18 @@ TAO_ORB_Parameters::sock_keepalive (int x)
}
ACE_INLINE int
+TAO_ORB_Parameters::sock_dontroute (void)
+{
+ return this->sock_dontroute_;
+}
+
+ACE_INLINE void
+TAO_ORB_Parameters::sock_dontroute (int x)
+{
+ this->sock_dontroute_ = x;
+}
+
+ACE_INLINE int
TAO_ORB_Parameters::ace_sched_policy (void) const
{
return this->ace_sched_policy_;
@@ -218,6 +230,30 @@ TAO_ORB_Parameters::single_read_optimization (int x)
this->single_read_optimization_ = x;
}
+ACE_INLINE bool
+TAO_ORB_Parameters::use_parallel_connects (void) const
+{
+ return this->use_parallel_connects_;
+}
+
+ACE_INLINE void
+TAO_ORB_Parameters::use_parallel_connects (bool x)
+{
+ this->use_parallel_connects_ = x;
+}
+
+ACE_INLINE unsigned long
+TAO_ORB_Parameters::parallel_connect_delay (void) const
+{
+ return this->parallel_connect_delay_;
+}
+
+ACE_INLINE void
+TAO_ORB_Parameters::parallel_connect_delay (unsigned long x)
+{
+ this->parallel_connect_delay_ = x;
+}
+
ACE_INLINE int
TAO_ORB_Parameters::shared_profile (void) const
{