ChangeLog 5.2 KB

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