ChangeLog 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
  2. * IPAddress.cs: initialize the read only fields with Parse().
  3. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  4. * IPAddress.cs: little changes to behave as MS.
  5. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  6. * Dns.cs (Resolve): behave as MS. Agreed with Mads.
  7. 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
  8. * IPAddress.cs: the icalls for sockets are endianness-aware. So I
  9. changed a few things. Also included a workaround for bug #23547.
  10. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  11. * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
  12. by Paolo) instead of guessing the endianness.
  13. * SocketAddress.cs: implemented Equals() and GetHashcode().
  14. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  15. * IPEndPoint.cs: modifications to constructors according to the
  16. specifications (suggested by Lawrence Pit).
  17. 2002-04-15 Patrik Torstensson <[email protected]>
  18. * IPEndPoint.cs: Fixed build breaker.
  19. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  20. * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
  21. complete.
  22. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  23. * IPAddress.cs: finished all MonoTODO's. Use network order to store
  24. the address. Check for max and min values in Address:set. IsLoopback()
  25. returns now true for all 127.x.y.z. Some more checks in Parse ().
  26. Some changes to behave as MS does.
  27. 2002-02-24 Duncan Mak <[email protected]>
  28. * ICredentialLookup.cs: Added the GetCredential method to the
  29. interface. The interface is named "ICredentials", should this file
  30. be renamed?
  31. * NetworkCredential.cs: Added to CVS. Need to investigate on how
  32. GetCredential() works
  33. 2002-01-23 Dick Porter <[email protected]>
  34. * SocketAddress.cs: Implemented.
  35. * IPEndPoint.cs: Turned 'Address' field into a real property.
  36. Implemented Create() and Serialize() methods.
  37. * IPAddress.cs: Fixed class constructor, turned 'Address' field
  38. into a real property. Removed undocumented "public
  39. IPAddress(string)" constructor.
  40. * EndPoint.cs: Implemented. All methods return
  41. NotSupportedException to enforce subclass overriding.
  42. * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
  43. P/Invokes with portable internal calls.
  44. 2002-01-17 Miguel de Icaza <[email protected]>
  45. * Dns.cs: Updated to API changes.
  46. * IPAddress.cs: Updated API. Much left to implement.
  47. * Dns.cs: Remove IPToString method
  48. 2002-01-06 Ravi Pratap <[email protected]>
  49. * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
  50. attribute insertion.
  51. 2001-11-22 Nick Drochak <[email protected]>
  52. * IPAddress.cs: Fix constructor bug, properly name Address property,
  53. and use triple-slash for comments.
  54. 2001-11-20 Miguel de Icaza <[email protected]>
  55. * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
  56. None as suggested by Phillip.
  57. 2001-09-26 Mads Pultz <[email protected]>
  58. * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
  59. 2001-09-24 Mads Pultz <[email protected]>
  60. * Dns.cs: Minor changes (some print statements removed)
  61. 2001-09-23 Mads Pultz <[email protected]>
  62. * Dns.cs: Initial work submitted to repository.
  63. * IPHostEntry.cs: Initial work submitted to repository.
  64. 2001-07-12 Sean MacIsaac <[email protected]>
  65. * Authorization.cs: Fixed compiler error.
  66. * IAuthenticationModule.cs: Changes for Beta2.
  67. * IPAddress.cs: Internal storage changed to be uint not int.
  68. * IPEndPoint.cs: Fixed compiler error.
  69. * EndPoint.cs: Fixed compiler error.
  70. * AuthenticationManager.cs: Fixed typo.