ChangeLog 4.3 KB

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