[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Tcp / ChangeLog
index 0f8f57fc0fa67575624258e5f78f95be951550b4..214ab8b92c4c8f3dc8b423b085d8f537c4f9f3d0 100644 (file)
@@ -1,3 +1,37 @@
+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.