Explorar o código

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.


svn path=/trunk/mcs/; revision=69705
Lluis Sanchez %!s(int64=19) %!d(string=hai) anos
pai
achega
4dfd020e4f

+ 5 - 0
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog

@@ -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: 

+ 2 - 0
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpChannel.cs

@@ -65,6 +65,8 @@ namespace System.Runtime.Remoting.Channels.Tcp
 			
 			val = properties ["priority"];
 			if (val != null) _priority = Convert.ToInt32 (val);
+
+			StartListening (null);
 		}