ChangeLog 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  2. * NetworkStream.cs: allow 0 size array in Write.
  3. 2003-02-16 Gonzalo Paniagua Javier <[email protected]>
  4. * Socket.cs: make Worker.Connect and Receive work with non-blocking
  5. sockets. May be Receive* and Send* in Worker need to do the same. I'll
  6. wait for bug reports. Set IsCompleted to true before invoking the end
  7. callback. Fixes bug #38136.
  8. 2003-01-23 Gonzalo Paniagua Javier <[email protected]>
  9. * NetworkStream.cs: the check for disposed should not be done in the
  10. finally clause.
  11. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  12. * UdpClient.cs: fixed bug #36226.
  13. 2002-11-13 Dick Porter <[email protected]>
  14. * Socket.cs: Only close the socket in one place, ie the Dispose
  15. method. Fixes bug 32054.
  16. 2002-11-09 Gonzalo Paniagua Javier <[email protected]>
  17. * Socket.cs: offset == size == 0 it's ok in Send ().
  18. 2002-11-03 Phillip Pearson <[email protected]>
  19. * TcpClient.cs: Fixed SetTcpClient() to pass through to the Client
  20. property, which now sets stream to null (it's set by GetStream()). This
  21. should make GetStream() work on a TcpClient which has had the socket set
  22. by assignment to the Client property, not only one that has been created
  23. by TcpListener.AcceptTcpClient().
  24. 2002-10-08 Dick Porter <[email protected]>
  25. * Socket.cs:
  26. * NetworkStream.cs: Bounds checking fixes, and better exception
  27. texts. Changes by [email protected] (Timothy J. Mills).
  28. 2002-10-03 Dick Porter <[email protected]>
  29. * TcpClient.cs: NoDelay is a TCP option, not Socket
  30. 2002-09-16 Miguel de Icaza <[email protected]>
  31. * SocketFlags.cs: Add missing enumeration.
  32. * UdpClient.cs: Make Dispose private.
  33. 2002-08-20 Dick Porter <[email protected]>
  34. * Socket.cs: Fix deadlock when the AsyncResult callback calls
  35. End*(). Set the async request's worker property so it can return
  36. results. These two fixes combined fix bug 28092.
  37. 2002-06-24 Dick Porter <[email protected]>
  38. * Socket.cs: Make SetSocketOption cope with boolean values (they
  39. are passed as objects, not the ints the runtime was expecting)
  40. 2002-05-17 Lawrence Pit <[email protected]>
  41. * TcpListener.cs: Renamed LocalEndPoint to LocalEndpoint
  42. * NetworkStream.cs, UdpClient.cs and TcpClient.cs: modified disposable
  43. routines, added checks for disposed state.
  44. * UdpClient.cs: commented out GetHashCode and Equals as it's not
  45. overriden in ms.net implementation.
  46. 2002-05-17 Jaroslaw Kowalski <[email protected]>
  47. * TcpClient.cs: fixed SetTcpClient so that
  48. TcpListener.AcceptTcpClient works and allows
  49. you to call GetStream() on its result
  50. 2002-04-24 Dick Porter <[email protected]>
  51. * Socket.cs (Poll): Give correct argument to Select(), as spotted
  52. by Jaroslaw Kowalski <[email protected]>
  53. 2002-04-16 Gonzalo Paniagua Javier <[email protected]>
  54. * UdpClient.cs: implemented.
  55. 2002-04-02 Dick Porter <[email protected]>
  56. * TcpListener.cs: in Start(), set the socket listen backlog value
  57. to a sane value (noticed by Jonathan Stowe <[email protected]>)
  58. 2002-02-13 Dick Porter <[email protected]>
  59. * Socket.cs: Implemenent Select, Blocking, Connected,
  60. GetSocketOption, Poll, SetSocketOption and Shutdown
  61. * MulticastOption.cs:
  62. * LingerOption.cs: Delete override methods that don't need to be
  63. implemented
  64. 2002-01-23 Miguel de Icaza <[email protected]>
  65. * NetworkStream.cs: Implement class.
  66. 2002-01-23 Dick Porter <[email protected]>
  67. * SocketException.cs: Implemented
  68. * Socket.cs: Implemented most methods
  69. * LingerOption.cs: Made compile
  70. * AddressFamily.cs: Removed empty auto-generated comments
  71. 2002-01-17 Miguel de Icaza <[email protected]>
  72. * SocketException.cs: Reimplemented.
  73. 2002-01-06 Ravi Pratap <[email protected]>
  74. * ChangeLog : Add to this directory.
  75. * SocketException.cs, TcpClient.cs, TcpListener.cs : MonoTODO
  76. attribute decoration.