[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Tcp / ChangeLog
index 9c64e1becc7eb4122ec7dc91ba13f01492a8427c..214ab8b92c4c8f3dc8b423b085d8f537c4f9f3d0 100644 (file)
@@ -1,3 +1,73 @@
+2008-09-18  Robert Jordan  <robertj@gmx.net>
+
+       * TcpConnectionPool.cs: Set NoDelay on both profiles.
+
+2008-09-18  Zoltan Varga  <vargaz@gmail.com>
+
+       * TcpConnectionPool.cs: Set the NoDelay flag on the socket to avoid 
+       excessive waiting by the tcp stack. Fixes #416462.
+
+2008-09-17  Jeffrey Stedfast  <fejj@novell.com>
+
+       * TcpChannel.cs (ParseTcpURL): If given "tcp://", don't set host
+       to "", leave it as null.
+
+       * TcpClientChannel.cs (TcpClientChannel): Use the default
+       SinkProviders if the sinkProvider argument is null.
+
+       * TcpChannel.cs (ParseTcpURL): TcpClientTransportSink needs the
+       host component, so extract that info into its own string as well.
+
+2008-09-12  Jeffrey Stedfast  <fejj@novell.com>
+
+       Fix for bug #320298
+
+       * TcpClientTransportSink.cs: Updated for change to
+       TcpChannel.ParseTcpURL(). We now need to do our own integer
+       conversion/validation of the port.
+
+       * TcpChannel.cs (ParseTcpURL): We need to match the
+       protocol ("tcp") case-insensitively. The objectURI is supposed to
+       include the leading '/' character. Also, we need to ignore invalid
+       port designators since Microsoft's .NET implementation of
+       TcpChannel.Parse() doesn't seem to care that they are valid.
+
+2008-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * TcpChannel.cs: Fixed argument names to match MS.
+       * TcpServerChannel.cs: Fixed argument names to match MS.
+
+2008-06-18  Robert Jordan  <robertj@gmx.net>
+
+       * TcpMessageIO.cs: Handle zero length streams. Fixes #398783.
+
+2008-01-25  Zoltan Varga  <vargaz@gmail.com>
+
+       * TcpChannel.cs (Init): Handle properties == null.
+
+       * TcpClientChannel.cs (.ctor): Ditto. Fixes #355905.
+       
+2006-01-09  Robert Jordan  <robertj@gmx.net>
+
+       * TcpServerChannel.cs (ProcessMessages): Flush the stream only when
+       necessary (TcpServerTransportSink.InternalProcessMessage does it anyway),
+       otherwise pending OneWay & async messages are lost.
+       * TcpMessageIO.cs (SendMessageStream): Mark OneWay messages as such.
+       Fixes MS.NET interoperability.
+       * TcpClientTransportSink.cs (AsyncProcessRequest):
+       Use the new TcpMessageIO.SendMessageStream overload to mark OneWay
+       requests. Fixes bug #80406.
+
+2007-01-08  Lluis Sanchez Gual  <lluis@novell.com>
+
+       * TcpChannel.cs, TcpServerChannel.cs: Moved StartListening call to
+         the constructor of TcpServerChannel.
+
+2006-12-18  Lluis Sanchez Gual  <lluis@novell.com>
+
+       * TcpChannel.cs: The remoting infrastructure does not call
+         StartListening() anymore, so it has to be called by the channel.
+
 2006-09-15  Lluis Sanchez Gual  <lluis@novell.com> 
 
        * TcpServerTransportSink.cs, TcpServerChannel.cs: