ChangeLog 6.3 KB

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