ChangeLog 25 KB

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