ChangeLog 5.1 KB

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