ChangeLog 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 2002-08-20 Dick Porter <[email protected]>
  2. * Socket.cs: Fix deadlock when the AsyncResult callback calls
  3. End*(). Set the async request's worker property so it can return
  4. results. These two fixes combined fix bug 28092.
  5. 2002-06-24 Dick Porter <[email protected]>
  6. * Socket.cs: Make SetSocketOption cope with boolean values (they
  7. are passed as objects, not the ints the runtime was expecting)
  8. 2002-05-17 Lawrence Pit <[email protected]>
  9. * TcpListener.cs: Renamed LocalEndPoint to LocalEndpoint
  10. * NetworkStream.cs, UdpClient.cs and TcpClient.cs: modified disposable
  11. routines, added checks for disposed state.
  12. * UdpClient.cs: commented out GetHashCode and Equals as it's not
  13. overriden in ms.net implementation.
  14. 2002-05-17 Jaroslaw Kowalski <[email protected]>
  15. * TcpClient.cs: fixed SetTcpClient so that
  16. TcpListener.AcceptTcpClient works and allows
  17. you to call GetStream() on its result
  18. 2002-04-24 Dick Porter <[email protected]>
  19. * Socket.cs (Poll): Give correct argument to Select(), as spotted
  20. by Jaroslaw Kowalski <[email protected]>
  21. 2002-04-16 Gonzalo Paniagua Javier <[email protected]>
  22. * UdpClient.cs: implemented.
  23. 2002-04-02 Dick Porter <[email protected]>
  24. * TcpListener.cs: in Start(), set the socket listen backlog value
  25. to a sane value (noticed by Jonathan Stowe <[email protected]>)
  26. 2002-02-13 Dick Porter <[email protected]>
  27. * Socket.cs: Implemenent Select, Blocking, Connected,
  28. GetSocketOption, Poll, SetSocketOption and Shutdown
  29. * MulticastOption.cs:
  30. * LingerOption.cs: Delete override methods that don't need to be
  31. implemented
  32. 2002-01-23 Miguel de Icaza <[email protected]>
  33. * NetworkStream.cs: Implement class.
  34. 2002-01-23 Dick Porter <[email protected]>
  35. * SocketException.cs: Implemented
  36. * Socket.cs: Implemented most methods
  37. * LingerOption.cs: Made compile
  38. * AddressFamily.cs: Removed empty auto-generated comments
  39. 2002-01-17 Miguel de Icaza <[email protected]>
  40. * SocketException.cs: Reimplemented.
  41. 2002-01-06 Ravi Pratap <[email protected]>
  42. * ChangeLog : Add to this directory.
  43. * SocketException.cs, TcpClient.cs, TcpListener.cs : MonoTODO
  44. attribute decoration.