summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-08 20:48:44 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-08 20:48:44 +0000
commit9898b365607d9987614bc09374ecfb398635e67c (patch)
treeab64ac4ae949cb26dd4696cde419b51d5f90b6df
parent232f7a601bab00dc6548163448907885743339c6 (diff)
downloadATCD-9898b365607d9987614bc09374ecfb398635e67c.tar.gz
adding DS library
-rw-r--r--modules/TAO/tao/PortableServer/POA_Cached_Policies.inl20
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/TAO/tao/PortableServer/POA_Cached_Policies.inl b/modules/TAO/tao/PortableServer/POA_Cached_Policies.inl
index fc277cee00e..45cb696e294 100644
--- a/modules/TAO/tao/PortableServer/POA_Cached_Policies.inl
+++ b/modules/TAO/tao/PortableServer/POA_Cached_Policies.inl
@@ -74,38 +74,24 @@ namespace TAO
this->server_priority_ = priority;
}
- // the network priority model that is defined on the server.
- // the network priority model could be SERVER_DECLARED or
- // CLIENT_PROPAGATED.
- //
ACE_INLINE Cached_Policies::NetworkPriorityModel
Cached_Policies::network_priority_model (void) const
{
return this->network_priority_model_;
}
- // this function returns the request DiffServ codepoint to be used
- // when the SERVER_DECLARED network priority model is followed.
- //
ACE_INLINE CORBA::Long
Cached_Policies::request_diffserv_codepoint (void) const
{
return this->request_diffserv_codepoint_;
}
- // this function returns the reply DiffServ codepoint to be used
- // when the SERVER_DECLARED or CLIENT_PROPAGATED network priority
- // model is followed.
- //
ACE_INLINE CORBA::Long
Cached_Policies::reply_diffserv_codepoint (void) const
{
return this->reply_diffserv_codepoint_;
}
- // initiate the network priority model with the policy defined on the
- // server side.
- //
ACE_INLINE void
Cached_Policies::network_priority_model (
NetworkPriorityModel network_priority_model)
@@ -113,9 +99,6 @@ namespace TAO
this->network_priority_model_ = network_priority_model;
}
- // initiate the request DiffServ codepoint with the policy defined on the
- // server side.
- //
ACE_INLINE void
Cached_Policies::request_diffserv_codepoint (
CORBA::Long diffserv_codepoint)
@@ -123,9 +106,6 @@ namespace TAO
this->request_diffserv_codepoint_ = diffserv_codepoint;
}
- // initiate the reply DiffServ codepoint with the policy defined on the
- // server side.
- //
ACE_INLINE void
Cached_Policies::reply_diffserv_codepoint (CORBA::Long diffserv_codepoint)
{