summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-08 21:35:56 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-02-08 21:35:56 +0000
commit93bb22b30557461667a00eae9d21088be14a4dc7 (patch)
tree2a405a795b2453bbfa9c3330830d7f3116030af5
parent9898b365607d9987614bc09374ecfb398635e67c (diff)
downloadATCD-93bb22b30557461667a00eae9d21088be14a4dc7.tar.gz
adding DS library
-rw-r--r--modules/TAO/tao/PortableServer/POA_Cached_Policies.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/TAO/tao/PortableServer/POA_Cached_Policies.h b/modules/TAO/tao/PortableServer/POA_Cached_Policies.h
index 3d9ea18e773..5b8caca49d0 100644
--- a/modules/TAO/tao/PortableServer/POA_Cached_Policies.h
+++ b/modules/TAO/tao/PortableServer/POA_Cached_Policies.h
@@ -79,13 +79,35 @@ namespace TAO
PriorityModel priority_model (void) const;
CORBA::Short server_priority (void) const;
+ /// Returns the network priority model that was set using a policy
+ /// by the server application.
+ ///
NetworkPriorityModel network_priority_model (void) const;
+
+ /// Returns the request DiffServ codepoint that was set using a policy
+ /// by the server application.
+ ///
CORBA::Long request_diffserv_codepoint (void) const;
+
+ /// Returns the reply DiffServ codepoint that was set using a policy
+ /// by the server application.
+ ///
CORBA::Long reply_diffserv_codepoint (void) const;
+ /// Caches the network priority model that was set using a policy
+ /// by the server application.
+ ///
void network_priority_model (
NetworkPriorityModel network_priority_model);
+
+ /// Caches the request DiffServ codepoint that was set using a policy
+ /// by the server application.
+ ///
void request_diffserv_codepoint (CORBA::Long diffserv_codepoint);
+
+ /// Caches the reply DiffServ codepoint that was set using a policy
+ /// by the server application.
+ ///
void reply_diffserv_codepoint (CORBA::Long diffserv_codepoint);
void priority_model (PriorityModel priority_model);