ChangeLog 3.4 KB

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