summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 18:09:45 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 18:09:45 +0000
commit1ad66d7bc00905bef7b3df063fca3b64a4ab5117 (patch)
treef09a100fa4deaf53d354b1a5122c2b5a3f5c5fc7
parentdcaf8f8b59ec857750ed1f6c6a9e045418c91b19 (diff)
downloadATCD-1ad66d7bc00905bef7b3df063fca3b64a4ab5117.tar.gz
adding ds library
-rw-r--r--TAO/tao/notes/notes-in-connection-handler.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tao/notes/notes-in-connection-handler.txt b/TAO/tao/notes/notes-in-connection-handler.txt
new file mode 100644
index 00000000000..e216de31732
--- /dev/null
+++ b/TAO/tao/notes/notes-in-connection-handler.txt
@@ -0,0 +1,24 @@
+In IIOP_Connection_Handler.cpp, there are wo functions that
+set the DiffServ codepoint:
+
+1. set_dscp_codepoint (CORBA::Boolean ...)
+2. set_dscp_codepoint (CORBA::Long ...)
+
+The function #1 is called when the RT-CORBA way of setting DiffServ codepoint
+is used, while the function #2 is used, if the DiffServ policy way of setting
+DiffServ codepoint is used.
+
+So what it means is that the
+
+get_dscp_codepoint () function defined on the Protocols_Hooks class
+can be specialized.
+
+So the function returning the DiffServ codepoint can be named:
+
+get_rt_dscp_codepoint () in RT_CORBA Protocols_Hooks
+
+and
+
+get_dscp_codepoint () in the DiffServ_Protocols_Hooks.
+
+