* TcpChannel.cs: The remoting infrastructure does not call StartListening() anymore, so it has to be called by the channel. svn path=/trunk/mcs/; revision=69705
@@ -1,3 +1,8 @@
+2006-12-18 Lluis Sanchez Gual <[email protected]>
+
+ * 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 <[email protected]>
* TcpServerTransportSink.cs, TcpServerChannel.cs:
@@ -65,6 +65,8 @@ namespace System.Runtime.Remoting.Channels.Tcp
val = properties ["priority"];
if (val != null) _priority = Convert.ToInt32 (val);
+ StartListening (null);
}