ChangeLog 6.7 KB

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