ChangeLog 24 KB

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