summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-07-17 00:35:16 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-07-17 00:35:16 +0000
commit829de95e915c7f3e6a99cc6f1fba5f3ed4291768 (patch)
tree2e142f6665bda3f559cd1171fac200978daee0d8
parent1a2c2668499fa40354c4bc4c6a7441687a2ea7ef (diff)
downloadATCD-829de95e915c7f3e6a99cc6f1fba5f3ed4291768.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog_giop_lite_fragment44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/ChangeLog_giop_lite_fragment b/TAO/ChangeLog_giop_lite_fragment
new file mode 100644
index 00000000000..0ac7299fa4c
--- /dev/null
+++ b/TAO/ChangeLog_giop_lite_fragment
@@ -0,0 +1,44 @@
+Sat Jul 14 16:42:07 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/Strategies/DIOP_Transport.cpp:
+ * tao/Strategies/SHMIOP_Transport.cpp:
+ * tao/Strategies/UIOP_Transport.cpp: Added support for GIOP lite.
+
+Fri Jul 13 16:54:07 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/Pluggable_Messaging.h:
+ * tao/GIOP_Message_Base.h:
+ * tao/GIOP_Message_Base.cpp:
+ * tao/Transport.cpp:
+ * tao/Transport.h:
+ * tao/Transport.inl: Added support for GIOP fragments. The GIOP
+ fragmentation supportseems to have some copying and allocation
+ overhead. Need to look into this when it gets
+ important. Further, the fragmentatiojn support hasnt been
+ tested at all as we have no way of testing it.
+
+ * tao/IIOP_Transport.cpp: Enabled GIOP lite support
+ * tao/TAO.dsp: Added GIOP lite files back to the builds.
+
+ * tao/Connection_Handler.h:
+ * tao/orbconf.h: Moved some of the #defines from
+ Connection_Handler.h to orbconf.h.
+
+Mon Jul 9 10:23:07 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/GIOP_Message_Generator_Parser_12.cpp: The long talked about
+ alignment for the LocateReply messages have been removed. We
+ dont align the messages on an 8 byte boundary as described by
+ the CORBA 2.4 spec. This is one of the urgent resolutions
+ adopted by the OMG.
+
+Mon Jul 9 09:40:07 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/GIOP_Message_Lite.h:
+ * tao/GIOP_Message_Lite.cpp: Added support for GIOP lite. The
+ implementation now is similar to the regular GIOP.
+
+ * tao/GIOP_Message_Base.cpp: Used the payload_size () in
+ GIOP_Message_State for claculating the payload. We were using
+ the message_size () and then subtracting the length of the GIOP
+ header in consolidate_node (). This looked cumbersome.