ChangeLog 6.9 KB

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