ChangeLog 25 KB

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