ChangeLog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  2. * HttpWebRequest.cs: on second and sucesive tries when authenticating,
  3. don't use chunked encoding for POST, as we know the content length and
  4. have the body. Nullify bodyBuffer always in CheckFinalStatus.
  5. * WebAsyncResult.cs: added ChunkAsyncResult property. It holds the
  6. IAsyncResult when writing CRLF at the end of a chunk.
  7. * WebConnectionStream.cs: support sending chunked data.
  8. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  9. * HttpWebRequest.cs: When retrying a POST request after an
  10. authentication failure, resend the body. This fixes bug #51841.
  11. * WebConnectionStream.cs: Added properties for getting what's been
  12. written.
  13. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  14. * HttpWebRequest.cs: don't send 'Expect: 100-continue' for 1.0 version.
  15. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  16. * HttpWebRequest.cs: support proxy authentication.
  17. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  18. * BasicClient.cs:
  19. * DigestClient.cs: use IndexOf instead of StartsWith to deal with
  20. servers that provide several authentication schemas.
  21. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  22. * ChunkStream.cs: use an array of buffers instead of a MemoryStream for
  23. storing the chunks. This way, we won't miss traling data from the
  24. previous chunk when a new one is received before the other is fully
  25. read.
  26. 2004-01-27 Nick Drochak <[email protected]>
  27. * DigestClient.cs:
  28. * HttpWebRequest.cs:
  29. * IPv6Address.cs:
  30. * WebClient.cs:
  31. * WebConnection.cs:
  32. * WebConnectionStream.cs: Remove unused variables thus eliminating some
  33. build warnings.
  34. 2004-01-26 Gonzalo Paniagua Javier <[email protected]>
  35. * WebConnection.cs: patch by Yaacov Akiba Slama that fixes 100-continue
  36. handling for the case when the same packet also contains the actual
  37. [2-5]xx response.
  38. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  39. * HttpWebRequest.cs: Added missing property.
  40. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  41. * Dns.cs: don't block forever in EndResolve and EndGetHostByName. Fixes
  42. bug #53222.
  43. 2004-01-16 Lluis Sanchez Gual <[email protected]>
  44. * ChunkStream.cs: The "size" parameter of Write is not the number of
  45. bytes to write, but the last offset to be written. Thus, in WriteAndRead
  46. Back, since "read" is not an offset but the number of bytes, it must be
  47. added to the offset. Maybe it would be a good idea to change the name of
  48. the parameter, since it is confusing. This should fix bug #52591.
  49. 2004-01-12 Lluis Sanchez Gual <[email protected]>
  50. * WebConnection.cs: Yet another fix for WebConnection. This fixes
  51. bug #52169.
  52. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  53. * WebConnection.cs: Data.Init is a bad boy. Lluis realized. He also
  54. tidied up the end of ReadDone. Disabled relaunching the request if 2
  55. InitRead are called, since now we don't throw everything into
  56. RegisterWaitForSingleObject but one request at a time.
  57. * WebConnectionGroup.cs: when checking available connections, allow them
  58. not to be Connected but allocated to honor the connection limit.
  59. * WebConnectionStream.cs: CheckComplete() now checks for nextReadCalled
  60. too. ReadAll don't mess contentLength if it's provided in the headers.
  61. BIG thanks to Lluis. Turns out that we were debugging the same stuff and
  62. his Data.Init discovery was THE thing I was missing.
  63. Fixes bug #51277.
  64. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  65. * ServicePointManager.cs: use GetMaxConnections to get the appropiate
  66. number of connections limit.
  67. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  68. * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
  69. guilty for bug 52629.
  70. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  71. * CredentialCache.cs: return null instead of throwing NotImplemented.
  72. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  73. * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
  74. Benjamin Jemlich ([email protected]).
  75. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  76. * HttpWebRequest.cs: deal with authentication schemes that have more
  77. than 1 round trip (Ntlm).
  78. 2003-12-11 Gonzalo Paniagua Javier <[email protected]>
  79. * NtlmClient.cs: new class that actually uses one from Mono.Http to do
  80. the authentication.
  81. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  82. * HttpWebRequest.cs: when building the redirect URI, use the previous
  83. one as the base URI, which makes relative URIs work.
  84. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  85. * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
  86. Reinacker that Supports cnonce and preauthentication.
  87. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  88. * DigestClient.cs: initial Digest authentication. Works with apache
  89. mod_digest.
  90. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  91. * HttpWebRequest.cs: removed unneeded StringBuilder.
  92. * WebConnection.cs: default to keep the connection open for HTTP/1.1
  93. only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
  94. 2003-11-17 Gonzalo Paniagua Javier <[email protected]>
  95. * WebConnection.cs: turns out that socket.Connected is not useful until
  96. we actually try to send/receive data, even if the other end has already
  97. closed the socket. Added TryReconnect() and Connected.
  98. * WebConnectionData.cs: default value for StatusCode is 0 now.
  99. * WebConnectionGroup.cs: reuse the connection since the beginning,
  100. instead of opening up to ConnectionLimit and then reusing.
  101. * WebConnectionStream.cs: reopen the socket if we're trying to reuse
  102. one which fails on first write.
  103. 2003-11-14 Gonzalo Paniagua Javier <[email protected]>
  104. * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
  105. wrap it and do our job before calling it. Fixes bug #48497.
  106. 2003-11-12 Andreas Nahr <[email protected]>
  107. * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
  108. * SecurityProtocolType.cs: Added and implemented
  109. 2003-11-12 Gonzalo Paniagua Javier <[email protected]>
  110. * HttpWebRequest.cs: fixed redirects when they target another host.
  111. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  112. * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
  113. addresses.
  114. 2003-10-17 Pedro Martínez Juliá <[email protected]>
  115. * WebClient.cs: use Path.DirectorySeparator instead of "/" for
  116. windows compatibility. Add some checks for file paths like
  117. "C:/xxx/yyy/..." and like "/home/xxx/...".
  118. 2003-10-16 Pedro Martínez Juliá <[email protected]>
  119. * WebClient.cs: added a slash between directory and file names.
  120. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  121. * HttpWebRequest.cs:
  122. * HttpWebResponse.cs: better abort handling and leave the stream in a
  123. stable status on abort.
  124. 2003-10-12 Pedro Martínez Juliá <[email protected]>
  125. * WebClient.cs: refine reading of local files (like MS.NET).
  126. 2003-10-10 Pedro Martínez Juliá <[email protected]>
  127. * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
  128. but we didn't. Now, when Uri fails with an exception, it adds
  129. "file://" before the URI and tries again.
  130. 2003-10-09 Gonzalo Paniagua Javier <[email protected]>
  131. * ServicePoint.cs: preparing for recycling. Not yet finished.
  132. * ServicePointManager.cs: this is the one that reads config.
  133. * WebConnectionGroup.cs: don't read config here.
  134. * WebConnection.cs: added the queue again. Launch queued requests on
  135. error.
  136. 2003-10-08 Gonzalo Paniagua Javier <[email protected]>
  137. * WebConnection.cs: the queue is now handled by the threadpool.
  138. Initialize the connection data in a place where it does not depend on
  139. the execution order of the requests in threadpool. More error handling.
  140. * WebConnectionGroup.cs: use the limits in the config file and reuse
  141. connections when the limit is reached.
  142. 2003-10-02 Gonzalo Paniagua Javier <[email protected]>
  143. * HttpWebRequest.cs: handle 304 à la MS.
  144. * WebConnection.cs: set the response data when reading 0 bytes.
  145. 2003-09-16 Gonzalo Paniagua Javier <[email protected]>
  146. * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
  147. invalid state.
  148. 2003-08-14 Nick Drochak <[email protected]>
  149. * WebRequest.cs: Check lower case string since that is what we will add.
  150. 2003-08-04 Jerome Laban <[email protected]>
  151. * IPHostEntry.cs: Default contructor must not initialize members.
  152. (Fixes bug #45575).
  153. 2003-07-27 Andreas Nahr <[email protected]>
  154. * CredentialCache.cs: Removed undefined serializable attribute
  155. 2003-07-20 Gonzalo Paniagua Javier <[email protected]>
  156. * ChunkStream.cs:
  157. (WantMore): true if we've not received the last chunk yet. Fixes
  158. bug #45463. Thanks to Miguel for tracking this down and providing a
  159. test case.
  160. * WebConnection.cs: removed bogus ^M's.
  161. * WebHeaderCollection.cs: provide more info when the header or value is
  162. wrong.
  163. 2003-07-15 Andreas Nahr <[email protected]>
  164. * ChunkStream.cs: Removed unused members
  165. * IPAddress.cs: Removed unused exception variable, fixes compiler
  166. warning.
  167. * WebConnection.cs: Removed unused exception variables, fixes compiler
  168. warnings.
  169. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  170. * NetConfig.cs: If Clone method is not public, then it must use
  171. explicit interface method implementation syntax.
  172. 2003-07-14 Jerome Laban <[email protected]>
  173. * Dns.cs: Reworked indentation.
  174. Added IPv6 support.
  175. Added literal address checking in GetHostByAddress.
  176. Changed Dns.Resolve behavior.
  177. * IPAddress.cs:
  178. * IPEndPoint.cs: Added IPv6 support.
  179. * IPv6Address.cs: Added address compression.
  180. * NetConfig.cs: Added configuration section.
  181. 2003-07-14 Jerome Laban <[email protected]>
  182. * ServicePoint.cs: Removed Connect and GetEndPoint methods.
  183. Removed reverse resolution when uri is literal IP address.
  184. * WebConnection.cs: IPv6 compatibility update: Try to connect
  185. to all addresses returned by IPHostEntry.
  186. * WebConnectionGroup.cs: Removed unused parameter.
  187. 2003-07-13 Andreas Nahr <[email protected]>
  188. * WebProxy.cs: Add serialization/ deserialization support
  189. 2003-07-10 Andreas Nahr <[email protected]>
  190. * ProxyUseType.cs:
  191. * WebStatus.cs: Deleted (do not exist in this assembly)
  192. * IPv6Address.cs: Made internal
  193. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  194. * HttpWebRequest.cs:
  195. * ServicePointManager.cs:
  196. * WebConnection.cs: added support for proxies.
  197. 2003-07-05 Andreas Nahr <[email protected]>
  198. * DnsPermissionAttribute.cs:
  199. * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
  200. 2003-07-05 Andreas Nahr <[email protected]>
  201. * WebPermission.cs: Added and partially implemented
  202. * WebPermissionAttribute.cs: Added and implemented
  203. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  204. * WebClient.cs: fixed bug #45651.
  205. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  206. * WebClient.cs: Small fix by Sebastian <[email protected]>.
  207. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  208. * WebConnection.cs: fixed header writing the reusing a connection and
  209. the server does not send 100-continue response.
  210. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  211. * WebConnection.cs: close the socket and connection when disposing.
  212. * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
  213. when creating instances.
  214. * HttpWebRequest.cs:
  215. * HttpWebResponse.cs:
  216. * FileWebRequest.cs: support serialization.
  217. * FileWebResponse.cs: support serialization and fixed dispose checks.
  218. * FileWebRequestCreator.cs:
  219. * HttpRequestCreator.cs: added internal .ctor.
  220. 2003-06-24 Lluis Sanchez Gual <[email protected]>
  221. * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
  222. called before asyncWrite.SetCompleted, to make sure that the waiting
  223. thread does not start to send more information before
  224. SendRequestHeaders has finished.
  225. 2003-06-22 Lluis Sanchez Gual <[email protected]>
  226. * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
  227. read is really needed.
  228. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  229. * WebHeaderCollection.cs: prevent duplication headers used niternally.
  230. 2003-06-14 Gonzalo Paniagua Javier <[email protected]>
  231. * HttpWebRequest.cs: if CookieContainer has not been set, make
  232. HttpWebResponse ignore Set-Cookie* headers.
  233. * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
  234. CookieContainer have been provided to the request.
  235. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  236. * AuthenticationManager.cs: get the list of authentication modules from
  237. the configuration files. Added Clear and fixed Unregister.
  238. * BasicClient.cs: fully implemented.
  239. * HttpWebRequest.cs: added support for Basic authentication when
  240. credentials are set.
  241. * NetworkCredential.cs: fixed GetCredential.
  242. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  243. * HttpWebRequest.cs: *really* take care of requestSent to prevent
  244. sending the same request twice.
  245. * WebAsyncResult.cs: don't close the handle. Just Reset.
  246. * WebConnectionStream.cs: removed unneeded line.
  247. 2003-06-12 Gonzalo Paniagua Javier <[email protected]>
  248. * HttpWebRequest.cs: use InternalClose when we are not going to send the
  249. rest of the request stream because of an error after sending the
  250. headers.
  251. * WebConnection.cs: check for completion after setting the response.
  252. Enable reading in NextRead.
  253. * WebConnectionStream.cs: re-fixed the count for partially buffered
  254. reads. If the network stream returns 0 bytes, we're done.
  255. 2003-06-11 Gonzalo Paniagua Javier <[email protected]>
  256. * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
  257. special headers *after* the others.
  258. 2003-06-10 Gonzalo Paniagua Javier <[email protected]>
  259. * WebConnectionStream.cs: when the read is partially filled from the
  260. initial buffer, add those bytes too. Thanks to Lluis for debugging this.
  261. 2003-06-09 Gonzalo Paniagua Javier <[email protected]>
  262. * HttpWebRequest.cs: added ExpectContinue property.
  263. * WebConnection.cs: allow 100 Continue to be delayed after waiting for
  264. it.
  265. 2003-06-08 Gonzalo Paniagua Javier <[email protected]>
  266. * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
  267. is known not to respond to that.
  268. * ServicePoint.cs: added SendContinue property.
  269. * WebConnection.cs: only wait 2 seconds for a continue reply. If it
  270. timeouts, set SendContinue to false and proceeed sending data.
  271. * WebConnectionStream.cs: if 100-continue is not received and instead we
  272. get a 417 or anything else, don't send the data.
  273. * WebClient.cs: implemented all missing properties and methods except
  274. UploadFile.
  275. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  276. * FileWebRequestCreator.cs: splitted from WebRequest.
  277. * HttpRequestCreator.cs: splitted fromWebRequest.
  278. * WebRequest.cs: added methods that are used by the new configuration
  279. handler to set prefix/type name requests creators.
  280. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  281. * AuthenticationManager.cs:
  282. * Authorization.cs:
  283. * BasicClient.cs: new file.
  284. * ChunkStream.cs: new file.
  285. * Cookie.cs:
  286. * CookieContainer.cs:
  287. * GlobalProxySelection.cs:
  288. * HttpWebRequest.cs:
  289. * HttpWebResponse.cs:
  290. * IAuthenticationModule.cs:
  291. * ServicePoint.cs:
  292. * ServicePointManager.cs:
  293. * WebAsyncResult.cs: new file.
  294. * WebConnection.cs: new file.
  295. * WebConnectionData.cs: new file.
  296. * WebConnectionGroup.cs: new file.
  297. * WebConnectionStream.cs: new file.
  298. * WebException.cs:
  299. * WebHeaderCollection.cs:
  300. * WebProxy.cs:
  301. * WebResponse.cs:
  302. Reworked HttpWebRequest and related classes.
  303. 2003-05-30 Miguel de Icaza <[email protected]>
  304. * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
  305. InternalServerError (500)
  306. 2003-05-29 Miguel de Icaza <[email protected]>
  307. * HttpWebRequest.cs (Close): Move the code that accumulates the
  308. output to Close from Flush. Flush could have been called in the
  309. middle of the processing, and would have generated invalid results
  310. (which it did).
  311. 2003-05-23 Zoltan Varga <[email protected]>
  312. * Dns.cs (GetHostByAddress): Return the local host when called with
  313. IF_ANY.
  314. 2003-04-29 Miguel de Icaza <[email protected]>
  315. * WebClient.cs (DownloadData): Close the underlyng stream.
  316. (DownloadFile): Use using, so the file gets closed.
  317. 2003-04-24 Miguel de Icaza <[email protected]>
  318. * WebClient.cs (DownloadData): Instead of using a MemoryStream,
  319. keep track of all the small chunks in an ArrayList. The
  320. MemoryStream had the property of reallocating itself, and the
  321. problem was that MemoryStream.GetBuffer would return the buffer
  322. (correctly), but not something of the right size. So clients of
  323. DownloadData would get the extra unused bytes as part of the
  324. result.
  325. The solution would have been to make another copy at this point,
  326. instead, we only keep the small allocations around in the
  327. ArrayList, and we only do one large allocation at the end.
  328. * HttpWebResponse.cs: If there is a Content-Length header, pass
  329. this information to our HttpWebResponseStream, so it knows when to
  330. stop, instead of waiting for the stream to be shut down by the
  331. other end.
  332. * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
  333. the underlying stream if the method will do a content transfer and
  334. no Content-Length was provided. If not (HEAD and GET or
  335. Content-Length provided), keep going.
  336. 2003-04-23 Miguel de Icaza <[email protected]>
  337. * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
  338. the ContentLength specified on the request. If that happens, we
  339. have to accumulate all the data written, and once we accumulate
  340. the data, we send it off.
  341. Notice that the documentation in .NET is actually incorrect, they
  342. state that setting ContentLength is mandatory. It is not.
  343. 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
  344. * HttpWebResponse.cs: fixes bug #41180.
  345. 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
  346. * HttpWebRequest.cs: throw an exception is the response code is >= 300.
  347. 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
  348. * HttpWebRequest.cs: implemented IDisposable, make the request stream
  349. read only. Changed the way of disposing the socket.
  350. * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
  351. handle chunked transfer encoding (no more hangs), added serialization
  352. stuff, call CheckDisposed at the beginning of methods/properties (not
  353. in a finally clause).
  354. 2003-02-17 Nick Drochak <[email protected]>
  355. * WebClient.cs : Implemented Credentials property.
  356. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  357. * SocketAddress.cs: byte 1 of the data is the high byte of the family,
  358. not the size.
  359. 2003-01-29 Atsushi Enomoto <[email protected]>
  360. * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
  361. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  362. * HttpWebRequest.cs: applied patch from Tim Haynes
  363. ([email protected]).
  364. Avoided double-sending of the request to the server when both
  365. GetRequestStream() and GetResponse() are called.
  366. System Header attributes survive the Headers attribute set.
  367. Added handling of Connection: KeepAlive/Close
  368. 2002-10-03 Dick Porter <[email protected]>
  369. * Dns.cs: Fixed GetHostName()
  370. 2002-09-09 Gonzalo Paniagua Javier <[email protected]>
  371. * HttpWebRequest.cs:
  372. * HttpWebResponse.cs: applied another patch from Shahms E. King
  373. ([email protected]).
  374. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  375. * HttpWebRequest.cs:
  376. * HttpWebResponse.cs: applied patch from Shahms E. King
  377. ([email protected]).
  378. 2002-05-29 Lawrence Pit <[email protected]>
  379. * MonoHttpDate.cs: added
  380. * HttpWebRequest.cs: using MonoHttpDate
  381. * HttpWebResponse.cs: using MonoHttpDate
  382. * DnsPermission.cs: correct XML output
  383. * SocketPermission.cs: correct XML output
  384. 2002-05-21 Lawrence Pit <[email protected]>
  385. * WebClient.cs: stubbed
  386. * WebProxy.cs: fixed bug; had to change internal representation
  387. of bypasslist to ArrayList, different implementation of checking
  388. regex's.
  389. 2002-05-20 Lawrence Pit <[email protected]>
  390. * WebProxy.cs: added, implemented
  391. * ServicePoint.cs: implemented most
  392. * ServicePointManager.cs: implemented
  393. * HttpWebRequest.cs: started implementation
  394. * HttpWebResponse.cs: improved disposable routines
  395. * FileWebRequest.cs: slight improvement of Close method
  396. 2002-05-19 Lawrence Pit <[email protected]>
  397. * FileWebRequest.cs: finished implementation of async methods.
  398. * FileWebResponse.cs: improved disposable routines.
  399. * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods,
  400. byte ordering of address was backwards.
  401. 2002-05-13 Lawrence Pit <[email protected]>
  402. * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
  403. relying on standard asynchronous delegate features. Added checks for
  404. null strings.
  405. * HttpWebResponse.cs: implemented properties
  406. * FileWebResponse.cs: improved the way resources are disposed.
  407. * FileWebRequest.cs: started implementation of asynchronous methods
  408. * ServicePointManager.cs: implemented properties
  409. 2002-05-12 Lawrence Pit <[email protected]>
  410. * HttpWebRequest.cs: properties implemented
  411. * HttpWebResponse.cs: added
  412. * GlobalProxySelection.cs: implemented
  413. * FileWebResponse.cs: added
  414. * FileWebRequest.cs: some methods implemented
  415. 2002-05-11 Lawrence Pit <[email protected]>
  416. * WebHeaderCollection.cs: implemented
  417. * WebRequest.cs: implemented
  418. * FileWebRequest.cs and HttpWebRequest.cs stubs added
  419. 2002-05-09 Lawrence Pit <[email protected]>
  420. * Rewrote IPAddress.Parse method, passing all unit tests
  421. 2002-05-09 Lawrence Pit <[email protected]>
  422. * fixed bug in IPEndPoint.Equals method
  423. * fixed bug in IPAddress.Parse method
  424. * fixed bug in IPAddress.SwapLong method
  425. * fixed several bugs in Cookie.cs
  426. 2002-05-06 Lawrence Pit <[email protected]>
  427. * WebRequest.cs: added
  428. * WebResponse.cs: implemented
  429. * WebException.cs: implemented
  430. * WebHeaderCollection.cs: added
  431. * HttpVersion.cs: implemented
  432. * HttpContinueDelegate.cs: added
  433. * IWebProxy.cs: added
  434. * IWebRequestCreate.cs: added
  435. * ICertificatePolicy.cs: added
  436. * ServicePoint.cs: stubbed
  437. * ServicePointManager.cs: stubbed
  438. * CookieContainer.cs: added
  439. * Authorization.cs: implemented
  440. 2002-05-05 Lawrence Pit <[email protected]>
  441. * CredentialCache.cs: implemented
  442. 2002-05-05 Lawrence Pit <[email protected]>
  443. * IPAddress.cs: fixed IsLoopback, address was already in host order
  444. 2002-05-05 Lawrence Pit <[email protected]>
  445. * IPv6Address.cs: added (note: not part of .net spec)
  446. 2002-05-01 Lawrence Pit <[email protected]>
  447. * DnsPermission.cs: implemented
  448. * DnsPermissionAttribute.cs: implemented
  449. 2002-04-28 Lawrence Pit <[email protected]>
  450. * EndpointPermission.cs: implemented
  451. * SocketPermission.cs: implemented
  452. * SocketPermissionAttribute.cs: implemented
  453. * ProtocolViolationException.cs: implemented
  454. * Dns.c: passing w32 error code when no host found
  455. 2002-04-27 Lawrence Pit <[email protected]>
  456. * Cookie.cs: implemented
  457. * CookieCollection.cs: implemented
  458. * CookieException.cs: implemented
  459. 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
  460. * IPAddress.cs: initialize the read only fields with Parse().
  461. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  462. * IPAddress.cs: little changes to behave as MS.
  463. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  464. * Dns.cs (Resolve): behave as MS. Agreed with Mads.
  465. 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
  466. * IPAddress.cs: the icalls for sockets are endianness-aware. So I
  467. changed a few things. Also included a workaround for bug #23547.
  468. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  469. * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
  470. by Paolo) instead of guessing the endianness.
  471. * SocketAddress.cs: implemented Equals() and GetHashcode().
  472. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  473. * IPEndPoint.cs: modifications to constructors according to the
  474. specifications (suggested by Lawrence Pit).
  475. 2002-04-15 Patrik Torstensson <[email protected]>
  476. * IPEndPoint.cs: Fixed build breaker.
  477. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  478. * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
  479. complete.
  480. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  481. * IPAddress.cs: finished all MonoTODO's. Use network order to store
  482. the address. Check for max and min values in Address:set. IsLoopback()
  483. returns now true for all 127.x.y.z. Some more checks in Parse ().
  484. Some changes to behave as MS does.
  485. 2002-02-24 Duncan Mak <[email protected]>
  486. * ICredentialLookup.cs: Added the GetCredential method to the
  487. interface. The interface is named "ICredentials", should this file
  488. be renamed?
  489. * NetworkCredential.cs: Added to CVS. Need to investigate on how
  490. GetCredential() works
  491. 2002-01-23 Dick Porter <[email protected]>
  492. * SocketAddress.cs: Implemented.
  493. * IPEndPoint.cs: Turned 'Address' field into a real property.
  494. Implemented Create() and Serialize() methods.
  495. * IPAddress.cs: Fixed class constructor, turned 'Address' field
  496. into a real property. Removed undocumented "public
  497. IPAddress(string)" constructor.
  498. * EndPoint.cs: Implemented. All methods return
  499. NotSupportedException to enforce subclass overriding.
  500. * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
  501. P/Invokes with portable internal calls.
  502. 2002-01-17 Miguel de Icaza <[email protected]>
  503. * Dns.cs: Updated to API changes.
  504. * IPAddress.cs: Updated API. Much left to implement.
  505. * Dns.cs: Remove IPToString method
  506. 2002-01-06 Ravi Pratap <[email protected]>
  507. * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
  508. attribute insertion.
  509. 2001-11-22 Nick Drochak <[email protected]>
  510. * IPAddress.cs: Fix constructor bug, properly name Address property,
  511. and use triple-slash for comments.
  512. 2001-11-20 Miguel de Icaza <[email protected]>
  513. * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
  514. None as suggested by Phillip.
  515. 2001-09-26 Mads Pultz <[email protected]>
  516. * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
  517. 2001-09-24 Mads Pultz <[email protected]>
  518. * Dns.cs: Minor changes (some print statements removed)
  519. 2001-09-23 Mads Pultz <[email protected]>
  520. * Dns.cs: Initial work submitted to repository.
  521. * IPHostEntry.cs: Initial work submitted to repository.
  522. 2001-07-12 Sean MacIsaac <[email protected]>
  523. * Authorization.cs: Fixed compiler error.
  524. * IAuthenticationModule.cs: Changes for Beta2.
  525. * IPAddress.cs: Internal storage changed to be uint not int.
  526. * IPEndPoint.cs: Fixed compiler error.
  527. * EndPoint.cs: Fixed compiler error.
  528. * AuthenticationManager.cs: Fixed typo.