2005-01-14 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Tcp / ChangeLog
1 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
2
3         * TcpConnectionPool.cs: Don't limit client connections.
4         This fixes bug #70700. Create connections from outside the pool lock.
5         * TcpMessageIO.cs: Throw real exceptions when errors occur.
6         * TcpServerChannel.cs: Use the new RemotingThreadPool to manage threads.
7         This also fixes bug #70700.
8
9 2004-12-17  Lluis Sanchez Gual <lluis@novell.com>
10
11         * TcpMessageIO.cs: Removed some more WriteByte calls.
12         * TcpClientTransportSink.cs: Flush the net stream after writing
13         a message.
14
15 2004-12-10  Lluis Sanchez Gual <lluis@novell.com>
16
17         * TcpChannel.cs: Don't use regular expressions to parse the url, it's
18         too slow.
19         * TcpMessageIO.cs: Read byte chunks using the new StreamRead method,
20         which won't block if the connection is closed.
21         * TcpServerChannel.cs: Flush the stream after writing the response.
22         Wrap the close call in a try/catch (some bytes can be left in the
23         buffered stream if a connection is suddently closed, and it will fail
24         when trying to flush them).
25
26 2004-12-09  Lluis Sanchez Gual <lluis@novell.com>
27
28         * TcpConnectionPool.cs: Access the socket stream through a
29         BufferedStream.
30         * TcpMessageIO.cs: Avoid ReadByte().
31         * TcpServerChannel.cs: Access the socket stream through a
32         BufferedStream. Abort the connection if an unknown message is received.
33         All this fixes performance bug #70337.
34
35 2004-10-22  Lluis Sanchez Gual <lluis@ximian.com>
36
37         * TcpClientChannel.cs: In CreateMessageSink, process the remote channel
38           data if the provided url does not have the expected format. This fixes
39           a regression from the fix for bug #66768 and fixes #68669.
40
41 2004-07-15  Lluis Sanchez Gual <lluis@novell.com>
42
43         * TcpServerChannel.cs: Set channel name from the provided properties.
44           This fixes bug #61592.
45
46 2004-05-13  Lluis Sanchez Gual <lluis@ximian.com>
47
48         * TcpChannel.cs: Made Init private.
49         * TcpClientTransportSink.cs, TcpClientTransportSinkProvider.cs,
50           TcpServerTransportSink.cs: Made internal.
51
52 2004-04-16  Lluis Sanchez Gual  <lluis@ximian.com>
53
54         * TcpClientChannel.cs: Initialize the sink provider in the default
55           constructor.
56
57 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
58
59         * TcpServerChannel.cs: In the ProcessMessages() loop, moved the closing of
60           the stream to the finally block, so it is called if the thread is aborted.
61
62 2004-02-27  Lluis Sanchez Gual  <lluis@ximian.com>
63
64         * TcpClientTransportSink.cs: Set the RequestUri transport header before 
65           sending the request.
66
67 2004-02-23  Lluis Sanchez Gual <lluis@ximian.com>
68
69         * TcpClientTransportSink.cs: Release the connection after sending an
70           OneWay call. This fixes bug #54671.
71
72 2003-12-23  Lluis Sanchez Gual <lluis@ximian.com>
73
74         * TcpServerChannel.cs: If useIpAddress and bindAddress are both specified,
75           set bindAddress as the host address for the client.
76
77 2003-12-19  Lluis Sanchez Gual <lluis@ximian.com>
78
79         * TcpServerChannel.cs: Fixes in channel initialization.
80
81 2003-12-12  Lluis Sanchez Gual  <lluis@ximian.com>
82
83         * TcpChannel.cs: Added null check.
84
85 2003-11-16  Lluis Sanchez Gual  <lluis@ximian.com>
86
87         * TcpClientChannel.cs: Added support for name and priority properties.
88         * TcpServerChannel.cs: Added support for priority, bindTo, useIpAddress,
89           machineName and supressChannelData properties.
90         * TcpChannel.cs, TcpServerTransportSink.cs: Formatting change.
91                   
92 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
93
94         * TcpChannel.cs: take into account name and priority properties.
95         
96 2003-11-12  Lluis Sanchez Gual <lluis@ximian.com>
97
98         * TcpServerChannel.cs: Remove listener initialization and StartListening
99           call from constructor. It is called now by the remoting framework.
100         * TcpConnectionPool.cs: Removed fixme.
101         
102         Older log entries can be found in the System.Runtime.Remoting ChangeLog.
103