ChangeLog 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. 2004-04-28 Gonzalo Paniagua Javier <[email protected]>
  2. * Socket.cs: added support for unmanaged asynchronous IO. Speed up
  3. error checking.
  4. * UdpClient.cs: fixed Dispose so that it only closes the socket when
  5. called explicitly.
  6. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  7. * Socket.cs: added GetSupportsAsync and Poll_internal internal calls.
  8. Cleaned up Worker class: moved fields to SocketAsyncResult and use Poll
  9. when the socket is non-blocking before getting EWOULDBLOCK error.
  10. 2004-04-08 Dick Porter <[email protected]>
  11. * Socket.cs: Rearrange the internal calls so that the exceptions
  12. are thrown from managed code
  13. 2004-03-21 Gonzalo Paniagua Javier <[email protected]>
  14. * Socket.cs: when Dispose (bool) is called from the finalizer, always
  15. do the cleanup. Fixes yet another nullref with xsp.
  16. 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
  17. * Socket.cs: implemented IOControl.
  18. 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
  19. * Socket.cs: use the threadpool for asynchronous calls instead of
  20. creating new threads.
  21. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  22. * Socket.cs: added locks around waithandle assign and comparison in
  23. class Worker. Handle other exceptions than SocketException for
  24. non-blocking sockets.
  25. 2004-01-24 Gonzalo Paniagua Javier <[email protected]>
  26. * Socket.cs: handle WSAEWOULDBLOCK for non-blocking sockets. Fixes
  27. bug #53168. Avoid the creation of the ManualResetEvent in class Worker
  28. whenever possible.
  29. 2004-01-24 Gonzalo Paniagua Javier <[email protected]>
  30. * Socket.cs: if we have a pending async event, delay socket closing
  31. until EndX is called. Fixes bug #53229. Check parameters and if the
  32. socket has been disposed. Implemented IDisposable explicitly. The
  33. threads created have IsBackground = true now.
  34. 2004-01-10 Gonzalo Paniagua Javier <[email protected]>
  35. * Socket.cs: patch from Brad Fitzpatrick <[email protected]> episode 2.
  36. 2003-12-30 Gonzalo Paniagua Javier <[email protected]>
  37. * Socket.cs: fix for several asynchronous methods to delay exception
  38. throwing. Patch by Brad Fitzpatrick <[email protected]>.
  39. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  40. * TcpListener.cs: get the LocalEndPoint from the socket after binding.
  41. Fixes bug #52329.
  42. 2003-10-20 Miguel de Icaza <[email protected]>
  43. * TcpClient.cs: Fix void Dispose (bool disposing) to follow the
  44. pattern. It was shutting down the managed resources even in the
  45. finalizer case, it should only do that when called from
  46. IDisposable.Dipose.
  47. 2003-09-11 Lluis Sanchez Gual <[email protected]>
  48. * NetworkStream.cs: Added [In,Out] attributes to Read method.
  49. 2003-08-24 Gonzalo Paniagua Javier <[email protected]>
  50. * TcpListener.cs: various fixes to make the new tests pass. Closes
  51. bug #47848.
  52. 2003-08-10 Miguel de Icaza <[email protected]>
  53. * UdpClient.cs (Receive): Fix Bug 45633; We should do a blocking
  54. call until a datagram is arrives from the remote host. This
  55. removes the 512 "magic" buffer size when we did not have any data.
  56. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  57. * NetworkStream.cs:
  58. * Socket.cs: fixed array boundary checks. 0 sized arrays are allowed.
  59. 2003-07-18 Andreas Nahr <[email protected]>
  60. * Socket.cs: Added GetHashCode method
  61. 2003-07-14 Jerome Laban <[email protected]>
  62. * Socket.cs:
  63. * ProtocolType.cs:
  64. * SocketOptionLevel.cs:
  65. * TcpListener.cs:
  66. * TcpClient.cs:
  67. * UdpClient.cs:
  68. Added IPv6 support.
  69. * IPv6MulticastOption.cs: Added for IPv6 support.
  70. 2003-05-16 Dick Porter <[email protected]>
  71. * Socket.cs: Use Mono.Posix.UnixEndPoint if its available
  72. 2003-05-11 Gonzalo Paniagua Javier <[email protected]>
  73. * MulticastOption.cs: patch by Jerome Laban included in bug #42393.
  74. 2003-05-05 Gonzalo Paniagua Javier <[email protected]>
  75. * Socket.cs:
  76. (Select): don't create arrays if not needed.
  77. (Poll): call Select_internal directly.
  78. Warning: you need an up to date runtime for this to work!
  79. 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
  80. * UdpClient.cs: don't bind the socket unless .ctor (IPEndPoint) is used.
  81. Added more checks and throws.
  82. Small fixes in Send to avoid duplicating the buffer.
  83. Moved CheckIfDisposed calls to the start of the methods instead of doing
  84. the check inside a finally clause.
  85. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  86. * Socket.cs:
  87. (SendTo): fix from Jerome Laban <[email protected]>.
  88. 2003-02-28 Gonzalo Paniagua Javier <[email protected]>
  89. * Socket.cs: patch from Elan Feingold <[email protected]>. Fixes
  90. NullReferenceException when the callback is null.
  91. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  92. * NetworkStream.cs: allow 0 size array in Write.
  93. 2003-02-16 Gonzalo Paniagua Javier <[email protected]>
  94. * Socket.cs: make Worker.Connect and Receive work with non-blocking
  95. sockets. May be Receive* and Send* in Worker need to do the same. I'll
  96. wait for bug reports. Set IsCompleted to true before invoking the end
  97. callback. Fixes bug #38136.
  98. 2003-01-23 Gonzalo Paniagua Javier <[email protected]>
  99. * NetworkStream.cs: the check for disposed should not be done in the
  100. finally clause.
  101. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  102. * UdpClient.cs: fixed bug #36226.
  103. 2002-11-13 Dick Porter <[email protected]>
  104. * Socket.cs: Only close the socket in one place, ie the Dispose
  105. method. Fixes bug 32054.
  106. 2002-11-09 Gonzalo Paniagua Javier <[email protected]>
  107. * Socket.cs: offset == size == 0 it's ok in Send ().
  108. 2002-11-03 Phillip Pearson <[email protected]>
  109. * TcpClient.cs: Fixed SetTcpClient() to pass through to the Client
  110. property, which now sets stream to null (it's set by GetStream()). This
  111. should make GetStream() work on a TcpClient which has had the socket set
  112. by assignment to the Client property, not only one that has been created
  113. by TcpListener.AcceptTcpClient().
  114. 2002-10-08 Dick Porter <[email protected]>
  115. * Socket.cs:
  116. * NetworkStream.cs: Bounds checking fixes, and better exception
  117. texts. Changes by [email protected] (Timothy J. Mills).
  118. 2002-10-03 Dick Porter <[email protected]>
  119. * TcpClient.cs: NoDelay is a TCP option, not Socket
  120. 2002-09-16 Miguel de Icaza <[email protected]>
  121. * SocketFlags.cs: Add missing enumeration.
  122. * UdpClient.cs: Make Dispose private.
  123. 2002-08-20 Dick Porter <[email protected]>
  124. * Socket.cs: Fix deadlock when the AsyncResult callback calls
  125. End*(). Set the async request's worker property so it can return
  126. results. These two fixes combined fix bug 28092.
  127. 2002-06-24 Dick Porter <[email protected]>
  128. * Socket.cs: Make SetSocketOption cope with boolean values (they
  129. are passed as objects, not the ints the runtime was expecting)
  130. 2002-05-17 Lawrence Pit <[email protected]>
  131. * TcpListener.cs: Renamed LocalEndPoint to LocalEndpoint
  132. * NetworkStream.cs, UdpClient.cs and TcpClient.cs: modified disposable
  133. routines, added checks for disposed state.
  134. * UdpClient.cs: commented out GetHashCode and Equals as it's not
  135. overriden in ms.net implementation.
  136. 2002-05-17 Jaroslaw Kowalski <[email protected]>
  137. * TcpClient.cs: fixed SetTcpClient so that
  138. TcpListener.AcceptTcpClient works and allows
  139. you to call GetStream() on its result
  140. 2002-04-24 Dick Porter <[email protected]>
  141. * Socket.cs (Poll): Give correct argument to Select(), as spotted
  142. by Jaroslaw Kowalski <[email protected]>
  143. 2002-04-16 Gonzalo Paniagua Javier <[email protected]>
  144. * UdpClient.cs: implemented.
  145. 2002-04-02 Dick Porter <[email protected]>
  146. * TcpListener.cs: in Start(), set the socket listen backlog value
  147. to a sane value (noticed by Jonathan Stowe <[email protected]>)
  148. 2002-02-13 Dick Porter <[email protected]>
  149. * Socket.cs: Implemenent Select, Blocking, Connected,
  150. GetSocketOption, Poll, SetSocketOption and Shutdown
  151. * MulticastOption.cs:
  152. * LingerOption.cs: Delete override methods that don't need to be
  153. implemented
  154. 2002-01-23 Miguel de Icaza <[email protected]>
  155. * NetworkStream.cs: Implement class.
  156. 2002-01-23 Dick Porter <[email protected]>
  157. * SocketException.cs: Implemented
  158. * Socket.cs: Implemented most methods
  159. * LingerOption.cs: Made compile
  160. * AddressFamily.cs: Removed empty auto-generated comments
  161. 2002-01-17 Miguel de Icaza <[email protected]>
  162. * SocketException.cs: Reimplemented.
  163. 2002-01-06 Ravi Pratap <[email protected]>
  164. * ChangeLog : Add to this directory.
  165. * SocketException.cs, TcpClient.cs, TcpListener.cs : MonoTODO
  166. attribute decoration.