ChangeLog 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300
  1. 2005-03-30 Gonzalo Paniagua Javier <[email protected]>
  2. * CookieContainer.cs: adding to a CookieCollection might not increment
  3. the number of items if the cookie is replaced. Now Count works properly.
  4. Fixed an array index exception (typo).
  5. * CookieCollection.cs: also compare the version.
  6. * HttpWebResponse.cs: when we have cookies, add them to the request
  7. container.
  8. * HttpWebRequest.cs: changed last parameter of HttpWebResponse ctor.
  9. 2005-03-30 Miguel de Icaza <[email protected]>
  10. * Cookie.cs: Compare using the InvariantCulture, to match the
  11. behavior of CookieContainer that already did this.
  12. 2005-03-30 Gonzalo Paniagua Javier <[email protected]>
  13. * WebConnection.cs: we don't need to trigger the next queued request
  14. until the response is closed.
  15. 2005-03-29 Miguel de Icaza <[email protected]>
  16. * HttpWebResponse.cs: Handle quotations in the cookies values, per
  17. the spec http://www.faqs.org/rfcs/rfc2109.html, it is allowed to
  18. have quotations.
  19. 2005-03-18 Gonzalo Paniagua Javier <[email protected]>
  20. * BasicClient.cs:
  21. * DigestClient.cs: check that GetCredential() does not return null.
  22. 2005-03-16 Gonzalo Paniagua Javier <[email protected]>
  23. * BasicClient.cs: ensure credentials are not null.
  24. 2005-03-10 Gonzalo Paniagua Javier <[email protected]>
  25. * HttpWebResponse.cs: moved cookie parsing into its own class.
  26. * WebHeaderCollection.cs: remove (probably bogus) GetMultipleValues
  27. call.
  28. * HttpWebRequest.cs: don't let exception raised in the ctor of
  29. HttpWebResponse vanish.
  30. Fixes bug #73275.
  31. 2005-03-01 Gonzalo Paniagua Javier <[email protected]>
  32. * WebHeaderCollection.cs: handle commas inside quotes when splitting
  33. a multi-value header. Fixes bug #73151.
  34. 2005-02-13 Gonzalo Paniagua Javier <[email protected]>
  35. * DigestClient.cs: fix for digest auth. and URIs containing query. Patch
  36. by James Wilcox. Fixes bug #72571.
  37. 2005-02-12 Gonzalo Paniagua Javier <[email protected]>
  38. * HttpWebResponse.cs:
  39. * WebConnection.cs:
  40. * HttpWebRequest.cs:
  41. * WebConnectionStream.cs: don't read the entire response unless the
  42. user requests it. Fixes bug #72443.
  43. 2005-02-08 Zoltan Varga <[email protected]>
  44. * IPv6Address.cs: Fix endianess problems.
  45. * IPAddress.cs: Fix misleading comments.
  46. 2005-02-04 Gonzalo Paniagua Javier <[email protected]>
  47. * HttpWebRequest.cs: send the headers when we're supposed to write
  48. a POST/PUT but call GetResponse before GetRequestStream.
  49. * WebConnectionStream.cs: new RequestWritten property.
  50. 2005-01-20 Jonathan Pryor <[email protected]>
  51. * EndpointPermission.cs: Fix IsSubsetof(hostname) so that the regression
  52. tests work. In particular, IsSubsetOf ("12.13.*.*", "12.13.14.*") failed
  53. because 14 wasn't a subset of * (which it is). Fix: if part1 is we
  54. continue to the next portion.
  55. 2005-01-20 Jonathan Pryor <[email protected]>
  56. * IPAddress.cs (ParseIPV4): Fix so that the regression tests work. In
  57. particular, " foo" and ".1.1.6" weren't being caught (" foo" because it
  58. started with a space, and ".1.1.6" because the split string accepted a
  59. 0-length portion, which would make 1...6 valid, but isn't valid based on
  60. similar test cases).
  61. 2005-01-20 Jonathan Pryor <[email protected]>
  62. * WebHeaderCollection.cs: Fix GetValues(string) to split the values on
  63. commas if the header is a Multi-Value header. This matches
  64. MonoTests.System.Net.WebHeaderCollectionTest.
  65. 2005-01-19 Sebastien Pouliot <[email protected]>
  66. * WebPermissionAttribute.cs: Fixed NET_1_1 behaviour.
  67. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  68. * WebConnectionStream.cs: remove unneeded check. Write detects and
  69. triggers the exception now.
  70. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  71. * AuthenticationManager.cs: don't lock on a public Type.
  72. * HttpWebRequest.cs: read the error response for auth. errors.
  73. 2004-12-12 Gonzalo Paniagua Javier <[email protected]>
  74. * HttpWebRequest.cs: set webResponse back to null when redirecting.
  75. Fix the previous patch so that it reads the whole response even if
  76. auto-redirect is not enabled. Closes bug #70484.
  77. 2004-12-12 Gonzalo Paniagua Javier <[email protected]>
  78. * HttpWebResponse.cs: added ReadAll method.
  79. * WebConnection.cs: in HandleError, set the response error after
  80. closing the socket. Use an async. delegate to finish reading any prior
  81. WebConnectionStream.
  82. * HttpWebRequest.cs: for error responses that allow content, read the
  83. stream immediately. Fixes bug #70483.
  84. 2004-12-11 Gonzalo Paniagua Javier <[email protected]>
  85. * CookieContainer.cs: quote the port number.
  86. 2004-12-10 Gonzalo Paniagua Javier <[email protected]>
  87. * WebConnection.cs:
  88. * WebConnectionStream.cs: removed TryReconnect. It's no longer needed.
  89. 2004-12-05 Gonzalo Paniagua Javier <[email protected]>
  90. * WebConnection.cs: set the event in Close so that if the queue is
  91. empty, we won't block forever on next request. The finalizer was
  92. removed because we're not implementing IDisposable pattern here.
  93. 2004-12-04 Gonzalo Paniagua Javier <[email protected]>
  94. * WebConnection.cs: handle errors on chunked streams. Fixes bug #66858.
  95. * ChunkStream.cs: added error checking all over.
  96. * HttpWebRequest.cs: throw the exception received in SetResponseError
  97. if we already have a response.
  98. (SetRequestData): Don't nest the exception if it's a WebException.
  99. 2004-12-03 Gonzalo Paniagua Javier <[email protected]>
  100. * WebConnection.cs: remove prevStream and don't set busy to false in
  101. HandleError. prevStream is not needed any more and setting 'busy' so
  102. early might let a request skip the queue.
  103. * WebConnectionGroup.cs: decrement the indexer when removing a dead
  104. reference from the arraylist.
  105. * WebConnectionStream.cs:
  106. (ReadAll): call NextRead if it has not been called before even when
  107. we have completed the request. Reuse the read buffer when reading a
  108. response of unknown size. Increase the buffer to 8kB.
  109. (BeginRead): increase pendingReads earlier and even when reading from
  110. the internal buffer.
  111. (EndRead): decrease pendingReads later and always.
  112. 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
  113. * CookieContainer.cs: style, fixed checks for properties, implemented
  114. the MonoTODOs for the method that take an Uri. GetCookies and
  115. GetCookieHeaders now really return only the cookies that are requested
  116. filtering by the Uri parameter.
  117. * Cookie.cs: style, added default values for Comment, Domain and Port.
  118. 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
  119. * CookieCollection.cs: reformatted, fixed Add by adding a new method to
  120. search across the arraylist, as list.IndexOf is not what we want.
  121. 2004-11-19 Gonzalo Paniagua Javier <[email protected]>
  122. * WebConnection.cs: check for FIN or RST on the socket before reusing.
  123. Fixes bug #69388.
  124. 2004-11-09 Gonzalo Paniagua Javier <[email protected]>
  125. * ChunkStream.cs: simplified condition for WantMore property.
  126. * WebConnection.cs: in Connect(), finish any pending reads we might
  127. have for chunked data. Ignore possible blank lines at the very
  128. beginning of the server response. Honor user set KeepAlive in
  129. HttpWebRequest for HTTP/1.1 connections. Thanks to Eyal Alayuf for
  130. his suggestions and code.
  131. 2004-11-01 Gonzalo Paniagua Javier <[email protected]>
  132. * HttpWebResponse.cs: don't lock up when the cookie received ends with
  133. a semicolon. Patch by Darryl VanDorp. Fixes bug #68956.
  134. 2004-10-27 Gonzalo Paniagua Javier <[email protected]>
  135. * HttpWebRequest.cs: don't fail if the request has already been sent
  136. when accessing ContentType setter. Fixes bug #68848.
  137. 2004-10-25 Gonzalo Paniagua Javier <[email protected]>
  138. * ChunkStream.cs:
  139. (WantMore): we're not done until we get a 0 chunk size and the trailer.
  140. The 0 can be expressed as more than one character too (ie, 000000).
  141. * HttpWebRequest.cs: new argument in SetResponseError.
  142. * WebConnection.cs: added argument to HandleError as a hint for
  143. debugging.
  144. (Connect): make the chunked stream be in the expected state when
  145. reusing.
  146. * WebConnectionStream.cs: removed unused method (ResetWriteBuffer).
  147. 2004-10-10 David Sheldon <[email protected]>
  148. * HttpWebRequest.cs: Use RemoveAndAdd for AddRange. Fixes unittest.
  149. 2004-10-05 Gonzalo Paniagua Javier <[email protected]>
  150. * HttpWebRequest.cs: use RemoveAndAdd for headers multivalue headers.
  151. * WebHeaderCollection.cs: added RemoveAndAdd that behaves like the old
  152. SetInternal.
  153. 2004-10-04 Gonzalo Paniagua Javier <[email protected]>
  154. * HttpWebRequest.cs: ProxyQuery returns true when we use a proxy without
  155. tunneling a secure connection.
  156. * ServicePoint.cs: added UseConnect property.
  157. * ServicePointManager.cs: set the UseConnect property when we use a http
  158. proxy for a https connection.
  159. * WebConnection.cs: setup the tunnled connection when using a proxy and
  160. https.
  161. 2004-09-13 Gonzalo Paniagua Javier <[email protected]>
  162. * HttpWebResponse.cs: remove unused SplitValue method.
  163. 2004-09-10 Sebastien Pouliot <[email protected]>
  164. * DnsPermission.cs: Updated to pass new unit tests.
  165. * DnsPermissionAttribute.cs: Cleanup.
  166. * SocketPermission.cs: Updated to pass new unit tests.
  167. * SocketPermissionAttribute.cs: Updated to pass new unit tests.
  168. * WebPermission.cs: Implemented some TODO - not complete yet.
  169. * WebPermissionAttribute.cs: Updated to pass new unit tests.
  170. 2004-08-11 Gonzalo Paniagua Javier <[email protected]>
  171. * Cookie.cs: don't fail when using default constructor. Fixes bug
  172. #62890.
  173. 2004-08-11 Gonzalo Paniagua Javier <[email protected]>
  174. * HttpWebResponse.cs: set-cookie and set-cookie2 can be present more
  175. than once and have multiple values. Don't rely on string.split when
  176. parsing cookie values.
  177. * WebHeaderCollection.cs: same thing for set-cookie and set-cookie2.
  178. Fixed GetValues (it was splitting values that contained a comma) and
  179. changed SetInternal to handle multi-value headers.
  180. Fixes bug #62744.
  181. 2004-07-26 Gonzalo Paniagua Javier <[email protected]>
  182. * WebProxy.cs: fix scheme detection. Patch by Konstantin Triger
  183. ([email protected]).
  184. 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
  185. * HttpWebRequest.cs: detect changes in scheme or port when redirecting.
  186. Fixes las take on bug 61218.
  187. 2004-07-14 Gonzalo Paniagua Javier <[email protected]>
  188. * WebConnection.cs: moved loading of the ssl stream Type to its own
  189. method. Don't create a new ssl stream if we're reusing the connection.
  190. * WebConnectionStream.cs: ensure the number of bytes copied in ReadAll
  191. is the expected even if the dta from the server has extra bytes.
  192. 2004-07-12 Gonzalo Paniagua Javier <[email protected]>
  193. * WebConnection.cs:
  194. * WebConnectionStream.cs: when the status code is 1xx, 204 or 304,
  195. "responses MUST NOT include a message-body". We tried to read the
  196. stream even when getting those codes and considered the 0 length
  197. read as a failure.
  198. 2004-07-09 Gonzalo Paniagua Javier <[email protected]>
  199. * HttpWebRequest.cs: removed bogus Monitor.Exit.
  200. * WebConnection.cs: use Address instead of RequestUri when checking for
  201. the scheme in order to select the stream type. Fixes bug #61218.
  202. 2004-06-06 Gonzalo Paniagua Javier <[email protected]>
  203. * ChunkStream.cs: added ChunkLeft property.
  204. * WebConnection.cs:
  205. (EndRead): when using small byte arrays to read from a chunked stream,
  206. ensure we've read the chunk size and try to fulfill the request
  207. completely. fixes bug 59653.
  208. 2004-05-29 Gonzalo Paniagua Javier <[email protected]>
  209. * WebConnectionStream.cs: fixed CanRead property. Closes bug #59273.
  210. 2004-05-28 Gonzalo Paniagua Javier <[email protected]>
  211. * DigestClient.cs: cache the sessions based on address and
  212. credentials, not only address. Added poor men's expiration to
  213. the session cache. Fixes bug #59202.
  214. 2004-05-26 Gonzalo Paniagua Javier <[email protected]>
  215. * IPAddress.cs:
  216. * IPEndPoint.cs:
  217. * IPv6Address.cs: no more warnings about IPAddress.Address.
  218. 2004-05-18 Gonzalo Paniagua Javier <[email protected]>
  219. * WebException.cs: implemented serialization .ctor and
  220. GetObjectData().
  221. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  222. * WebAsyncResult.cs: don't create the WaitHandle if not needed.
  223. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  224. * HttpWebRequest.cs: added 3 missing properties for 1.1. They are not
  225. used yet.
  226. * NetConfig.cs: added MaxResponseHeadersLength field.
  227. * ServicePoint.cs:
  228. * ServicePointManager.cs: added missing properties for 1.1.
  229. 2004-05-03 Sebastien Pouliot <[email protected]>
  230. * WebConnection.cs: Use assembly name const to load Mono.Security.
  231. 2004-05-03 Lluis Sanchez Gual <[email protected]>
  232. * NtlmClient.cs: Use assembly name const to load Mono.Security.
  233. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  234. * WebConnectionStream.cs: avoid the exception when getting the content
  235. length if possible.
  236. 2004-03-29 Lluis Sanchez Gual <[email protected]>
  237. * HttpWebRequest.cs: Use a lock block instead of Monitor.Enter/Exit, so
  238. the lock is released in case of exception (for example, a
  239. ThreadAbortException). This also "fixes" bug #52417.
  240. Beware, this requires a runtime update (due to a bug in Monitor.Exit).
  241. * ServicePoint.cs: Changed method from internal to private, since it
  242. is not called from outside the class.
  243. 2004-03-24 Gonzalo Paniagua Javier <[email protected]>
  244. * HttpWebRequest.cs: added the exception status to the error message.
  245. * WebConnection.cs: add headers using SetInternal instead of Add to
  246. bypass header name validation. Fixes bug #55994.
  247. * WebHeaderCollection.cs: added SetInternal (string header).
  248. 2004-03-04 Gonzalo Paniagua Javier <[email protected]>
  249. * WebConnection.cs:
  250. * WebConnectionGroup.cs: the requests queue is now shared for all the
  251. connections belonging to the same connection group.
  252. 2004-02-26 Sebastien Pouliot <[email protected]>
  253. * DefaultCertificatePolicy.cs: New. Certificate validation
  254. policy compatible with the documented one present in Fx. It
  255. allows valid certificates and expired certificates to be used
  256. for SSL connections.
  257. * ServicePointManager.cs: Removed the DummyPolicy. Now creates
  258. a DefaultCertificatePolicy to validate certificates.
  259. 2004-02-26 Gonzalo Paniagua Javier <[email protected]>
  260. * ServicePoint.cs: SendContinue is always false for HTTP/1.0
  261. * WebConnection.cs: get rid of WaitForContinue() (yes!) and prevent
  262. calling more the ContinueDelegate more than once when we get the
  263. headers in several packets.
  264. * WebConnectionStream.cs: removed call to WaitForContinue.
  265. 2004-02-25 Sebastien Pouliot <[email protected]>
  266. * WebConnection.cs: Update previous patch to use HttpsClientStream
  267. (internal in Mono.Security assembly) in place of SslClientStream.
  268. This will reduce reflection and allow to use ICertificatePolicy.
  269. 2004-02-25 Gonzalo Paniagua Javier <[email protected]>
  270. * DigestClient.cs: fix quote handling. Reordered attributes in response.
  271. Fixed typo (QOP->CNonce). Now Digest works with apache2.
  272. 2004-02-25 Gonzalo Paniagua Javier <[email protected]>
  273. * DigestClient.cs: removed Console.
  274. * HttpWebRequest.cs: 401/407 were hanging for GET. Fixed.
  275. 2004-02-24 Sebastien Pouliot <[email protected]>
  276. * DigestClient.cs: Fixed issue with Apache server which do not use "
  277. for specifying the digest algorithm (.e.g. algorithm=MD5 not ="MD5").
  278. 2004-02-20 Gonzalo Paniagua Javier <[email protected]>
  279. * HttpWebRequest.cs: arghhh. I used the server response headers instead
  280. of what the client is supposed to send. Thanks to Helge Hess.
  281. 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
  282. * AuthenticationManager.cs: implemented PreAuthenticate().
  283. * HttpWebRequest.cs: once we know the version of the server, use it if
  284. below the requested one. Remove 'Expect', 'Content-Length' and /or
  285. 'Transfer-Encoding' if appropiate due to changes in version. Fixed
  286. 'Host' header for non-standard ports. Support preauthentication. Closes
  287. bug #50530.
  288. 2004-02-19 Gonzalo Paniagua Javier <[email protected]>
  289. * HttpWebRequest.cs: check for missing or wrong URI in Location header
  290. when redirecting.
  291. * WebConnection.cs: if the data read does not contain all the headers,
  292. keep it around and read the rest until we get to the response body.
  293. Allow response code with no description. Fixed bug #54543.
  294. 2004-02-18 Sebastien Pouliot <[email protected]>
  295. * SecurityProtocolType.cs: Added missing [Serializable] to enum. Added
  296. Default and Ssl2 to NET_2_0 profile. Enum is now internal for NET_1_0
  297. profile (as we need it for SslClientStream).
  298. * ServicePoint.cs: Added internal SetCertificates(client,server).
  299. * ServicePointManager.cs: Added CheckCertificateRevocationList and
  300. CheckCertificateRevocationList static properties (public in 1.1,
  301. internal for 1.0).
  302. * WebConnection.cs: Dynamically creates a SslClientStream (from
  303. Mono.Security assembly) in case of https. Changed NetworkStream to
  304. Stream everywhere.
  305. 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
  306. * HttpWebRequest.cs: send the 'Connection: keep-alive' header when we
  307. don't know the server version or it's 1.0.
  308. * ServicePoint.cs: added SetVersion.
  309. * WebAsyncResult.cs: remove ChunkAsyncResult.
  310. * WebConnection.cs: set the ServicePoint version when getting a response
  311. from the server.
  312. * WebConnectionStream.cs: when posting chunked content, send the head,
  313. body and trailer of the chunk at once instead of doing 3 separate
  314. writes, which may cause troubles.
  315. 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
  316. * WebConnection.cs: if we get a 100 when we're not waiting for it, set
  317. that information in the ServicePoint.
  318. * WebConnectionStream.cs: send headers in the right order for
  319. non-chunked POST.
  320. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  321. * WebConnectionStream.cs: fixed nullrefs in BeginWrite/EndWrite.
  322. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  323. * HttpWebRequest.cs: on second and sucesive tries when authenticating,
  324. don't use chunked encoding for POST, as we know the content length and
  325. have the body. Nullify bodyBuffer always in CheckFinalStatus.
  326. * WebAsyncResult.cs: added ChunkAsyncResult property. It holds the
  327. IAsyncResult when writing CRLF at the end of a chunk.
  328. * WebConnectionStream.cs: support sending chunked data.
  329. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  330. * HttpWebRequest.cs: When retrying a POST request after an
  331. authentication failure, resend the body. This fixes bug #51841.
  332. * WebConnectionStream.cs: Added properties for getting what's been
  333. written.
  334. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  335. * HttpWebRequest.cs: don't send 'Expect: 100-continue' for 1.0 version.
  336. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  337. * HttpWebRequest.cs: support proxy authentication.
  338. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  339. * BasicClient.cs:
  340. * DigestClient.cs: use IndexOf instead of StartsWith to deal with
  341. servers that provide several authentication schemas.
  342. 2004-02-12 Gonzalo Paniagua Javier <[email protected]>
  343. * ChunkStream.cs: use an array of buffers instead of a MemoryStream for
  344. storing the chunks. This way, we won't miss traling data from the
  345. previous chunk when a new one is received before the other is fully
  346. read.
  347. 2004-01-27 Nick Drochak <[email protected]>
  348. * DigestClient.cs:
  349. * HttpWebRequest.cs:
  350. * IPv6Address.cs:
  351. * WebClient.cs:
  352. * WebConnection.cs:
  353. * WebConnectionStream.cs: Remove unused variables thus eliminating some
  354. build warnings.
  355. 2004-01-26 Gonzalo Paniagua Javier <[email protected]>
  356. * WebConnection.cs: patch by Yaacov Akiba Slama that fixes 100-continue
  357. handling for the case when the same packet also contains the actual
  358. [2-5]xx response.
  359. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  360. * HttpWebRequest.cs: Added missing property.
  361. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  362. * Dns.cs: don't block forever in EndResolve and EndGetHostByName. Fixes
  363. bug #53222.
  364. 2004-01-16 Lluis Sanchez Gual <[email protected]>
  365. * ChunkStream.cs: The "size" parameter of Write is not the number of
  366. bytes to write, but the last offset to be written. Thus, in WriteAndRead
  367. Back, since "read" is not an offset but the number of bytes, it must be
  368. added to the offset. Maybe it would be a good idea to change the name of
  369. the parameter, since it is confusing. This should fix bug #52591.
  370. 2004-01-12 Lluis Sanchez Gual <[email protected]>
  371. * WebConnection.cs: Yet another fix for WebConnection. This fixes
  372. bug #52169.
  373. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  374. * WebConnection.cs: Data.Init is a bad boy. Lluis realized. He also
  375. tidied up the end of ReadDone. Disabled relaunching the request if 2
  376. InitRead are called, since now we don't throw everything into
  377. RegisterWaitForSingleObject but one request at a time.
  378. * WebConnectionGroup.cs: when checking available connections, allow them
  379. not to be Connected but allocated to honor the connection limit.
  380. * WebConnectionStream.cs: CheckComplete() now checks for nextReadCalled
  381. too. ReadAll don't mess contentLength if it's provided in the headers.
  382. BIG thanks to Lluis. Turns out that we were debugging the same stuff and
  383. his Data.Init discovery was THE thing I was missing.
  384. Fixes bug #51277.
  385. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  386. * ServicePointManager.cs: use GetMaxConnections to get the appropiate
  387. number of connections limit.
  388. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  389. * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
  390. guilty for bug 52629.
  391. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  392. * CredentialCache.cs: return null instead of throwing NotImplemented.
  393. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  394. * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
  395. Benjamin Jemlich ([email protected]).
  396. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  397. * HttpWebRequest.cs: deal with authentication schemes that have more
  398. than 1 round trip (Ntlm).
  399. 2003-12-11 Gonzalo Paniagua Javier <[email protected]>
  400. * NtlmClient.cs: new class that actually uses one from Mono.Http to do
  401. the authentication.
  402. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  403. * HttpWebRequest.cs: when building the redirect URI, use the previous
  404. one as the base URI, which makes relative URIs work.
  405. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  406. * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
  407. Reinacker that Supports cnonce and preauthentication.
  408. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  409. * DigestClient.cs: initial Digest authentication. Works with apache
  410. mod_digest.
  411. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  412. * HttpWebRequest.cs: removed unneeded StringBuilder.
  413. * WebConnection.cs: default to keep the connection open for HTTP/1.1
  414. only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
  415. 2003-11-17 Gonzalo Paniagua Javier <[email protected]>
  416. * WebConnection.cs: turns out that socket.Connected is not useful until
  417. we actually try to send/receive data, even if the other end has already
  418. closed the socket. Added TryReconnect() and Connected.
  419. * WebConnectionData.cs: default value for StatusCode is 0 now.
  420. * WebConnectionGroup.cs: reuse the connection since the beginning,
  421. instead of opening up to ConnectionLimit and then reusing.
  422. * WebConnectionStream.cs: reopen the socket if we're trying to reuse
  423. one which fails on first write.
  424. 2003-11-14 Gonzalo Paniagua Javier <[email protected]>
  425. * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
  426. wrap it and do our job before calling it. Fixes bug #48497.
  427. 2003-11-12 Andreas Nahr <[email protected]>
  428. * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
  429. * SecurityProtocolType.cs: Added and implemented
  430. 2003-11-12 Gonzalo Paniagua Javier <[email protected]>
  431. * HttpWebRequest.cs: fixed redirects when they target another host.
  432. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  433. * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
  434. addresses.
  435. 2003-10-17 Pedro Martínez Juliá <[email protected]>
  436. * WebClient.cs: use Path.DirectorySeparator instead of "/" for
  437. windows compatibility. Add some checks for file paths like
  438. "C:/xxx/yyy/..." and like "/home/xxx/...".
  439. 2003-10-16 Pedro Martínez Juliá <[email protected]>
  440. * WebClient.cs: added a slash between directory and file names.
  441. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  442. * HttpWebRequest.cs:
  443. * HttpWebResponse.cs: better abort handling and leave the stream in a
  444. stable status on abort.
  445. 2003-10-12 Pedro Martínez Juliá <[email protected]>
  446. * WebClient.cs: refine reading of local files (like MS.NET).
  447. 2003-10-10 Pedro Martínez Juliá <[email protected]>
  448. * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
  449. but we didn't. Now, when Uri fails with an exception, it adds
  450. "file://" before the URI and tries again.
  451. 2003-10-09 Gonzalo Paniagua Javier <[email protected]>
  452. * ServicePoint.cs: preparing for recycling. Not yet finished.
  453. * ServicePointManager.cs: this is the one that reads config.
  454. * WebConnectionGroup.cs: don't read config here.
  455. * WebConnection.cs: added the queue again. Launch queued requests on
  456. error.
  457. 2003-10-08 Gonzalo Paniagua Javier <[email protected]>
  458. * WebConnection.cs: the queue is now handled by the threadpool.
  459. Initialize the connection data in a place where it does not depend on
  460. the execution order of the requests in threadpool. More error handling.
  461. * WebConnectionGroup.cs: use the limits in the config file and reuse
  462. connections when the limit is reached.
  463. 2003-10-02 Gonzalo Paniagua Javier <[email protected]>
  464. * HttpWebRequest.cs: handle 304 à la MS.
  465. * WebConnection.cs: set the response data when reading 0 bytes.
  466. 2003-09-16 Gonzalo Paniagua Javier <[email protected]>
  467. * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
  468. invalid state.
  469. 2003-08-14 Nick Drochak <[email protected]>
  470. * WebRequest.cs: Check lower case string since that is what we will add.
  471. 2003-08-04 Jerome Laban <[email protected]>
  472. * IPHostEntry.cs: Default contructor must not initialize members.
  473. (Fixes bug #45575).
  474. 2003-07-27 Andreas Nahr <[email protected]>
  475. * CredentialCache.cs: Removed undefined serializable attribute
  476. 2003-07-20 Gonzalo Paniagua Javier <[email protected]>
  477. * ChunkStream.cs:
  478. (WantMore): true if we've not received the last chunk yet. Fixes
  479. bug #45463. Thanks to Miguel for tracking this down and providing a
  480. test case.
  481. * WebConnection.cs: removed bogus ^M's.
  482. * WebHeaderCollection.cs: provide more info when the header or value is
  483. wrong.
  484. 2003-07-15 Andreas Nahr <[email protected]>
  485. * ChunkStream.cs: Removed unused members
  486. * IPAddress.cs: Removed unused exception variable, fixes compiler
  487. warning.
  488. * WebConnection.cs: Removed unused exception variables, fixes compiler
  489. warnings.
  490. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  491. * NetConfig.cs: If Clone method is not public, then it must use
  492. explicit interface method implementation syntax.
  493. 2003-07-14 Jerome Laban <[email protected]>
  494. * Dns.cs: Reworked indentation.
  495. Added IPv6 support.
  496. Added literal address checking in GetHostByAddress.
  497. Changed Dns.Resolve behavior.
  498. * IPAddress.cs:
  499. * IPEndPoint.cs: Added IPv6 support.
  500. * IPv6Address.cs: Added address compression.
  501. * NetConfig.cs: Added configuration section.
  502. 2003-07-14 Jerome Laban <[email protected]>
  503. * ServicePoint.cs: Removed Connect and GetEndPoint methods.
  504. Removed reverse resolution when uri is literal IP address.
  505. * WebConnection.cs: IPv6 compatibility update: Try to connect
  506. to all addresses returned by IPHostEntry.
  507. * WebConnectionGroup.cs: Removed unused parameter.
  508. 2003-07-13 Andreas Nahr <[email protected]>
  509. * WebProxy.cs: Add serialization/ deserialization support
  510. 2003-07-10 Andreas Nahr <[email protected]>
  511. * ProxyUseType.cs:
  512. * WebStatus.cs: Deleted (do not exist in this assembly)
  513. * IPv6Address.cs: Made internal
  514. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  515. * HttpWebRequest.cs:
  516. * ServicePointManager.cs:
  517. * WebConnection.cs: added support for proxies.
  518. 2003-07-05 Andreas Nahr <[email protected]>
  519. * DnsPermissionAttribute.cs:
  520. * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
  521. 2003-07-05 Andreas Nahr <[email protected]>
  522. * WebPermission.cs: Added and partially implemented
  523. * WebPermissionAttribute.cs: Added and implemented
  524. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  525. * WebClient.cs: fixed bug #45651.
  526. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  527. * WebClient.cs: Small fix by Sebastian <[email protected]>.
  528. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  529. * WebConnection.cs: fixed header writing the reusing a connection and
  530. the server does not send 100-continue response.
  531. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  532. * WebConnection.cs: close the socket and connection when disposing.
  533. * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
  534. when creating instances.
  535. * HttpWebRequest.cs:
  536. * HttpWebResponse.cs:
  537. * FileWebRequest.cs: support serialization.
  538. * FileWebResponse.cs: support serialization and fixed dispose checks.
  539. * FileWebRequestCreator.cs:
  540. * HttpRequestCreator.cs: added internal .ctor.
  541. 2003-06-24 Lluis Sanchez Gual <[email protected]>
  542. * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
  543. called before asyncWrite.SetCompleted, to make sure that the waiting
  544. thread does not start to send more information before
  545. SendRequestHeaders has finished.
  546. 2003-06-22 Lluis Sanchez Gual <[email protected]>
  547. * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
  548. read is really needed.
  549. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  550. * WebHeaderCollection.cs: prevent duplication headers used niternally.
  551. 2003-06-14 Gonzalo Paniagua Javier <[email protected]>
  552. * HttpWebRequest.cs: if CookieContainer has not been set, make
  553. HttpWebResponse ignore Set-Cookie* headers.
  554. * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
  555. CookieContainer have been provided to the request.
  556. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  557. * AuthenticationManager.cs: get the list of authentication modules from
  558. the configuration files. Added Clear and fixed Unregister.
  559. * BasicClient.cs: fully implemented.
  560. * HttpWebRequest.cs: added support for Basic authentication when
  561. credentials are set.
  562. * NetworkCredential.cs: fixed GetCredential.
  563. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  564. * HttpWebRequest.cs: *really* take care of requestSent to prevent
  565. sending the same request twice.
  566. * WebAsyncResult.cs: don't close the handle. Just Reset.
  567. * WebConnectionStream.cs: removed unneeded line.
  568. 2003-06-12 Gonzalo Paniagua Javier <[email protected]>
  569. * HttpWebRequest.cs: use InternalClose when we are not going to send the
  570. rest of the request stream because of an error after sending the
  571. headers.
  572. * WebConnection.cs: check for completion after setting the response.
  573. Enable reading in NextRead.
  574. * WebConnectionStream.cs: re-fixed the count for partially buffered
  575. reads. If the network stream returns 0 bytes, we're done.
  576. 2003-06-11 Gonzalo Paniagua Javier <[email protected]>
  577. * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
  578. special headers *after* the others.
  579. 2003-06-10 Gonzalo Paniagua Javier <[email protected]>
  580. * WebConnectionStream.cs: when the read is partially filled from the
  581. initial buffer, add those bytes too. Thanks to Lluis for debugging this.
  582. 2003-06-09 Gonzalo Paniagua Javier <[email protected]>
  583. * HttpWebRequest.cs: added ExpectContinue property.
  584. * WebConnection.cs: allow 100 Continue to be delayed after waiting for
  585. it.
  586. 2003-06-08 Gonzalo Paniagua Javier <[email protected]>
  587. * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
  588. is known not to respond to that.
  589. * ServicePoint.cs: added SendContinue property.
  590. * WebConnection.cs: only wait 2 seconds for a continue reply. If it
  591. timeouts, set SendContinue to false and proceeed sending data.
  592. * WebConnectionStream.cs: if 100-continue is not received and instead we
  593. get a 417 or anything else, don't send the data.
  594. * WebClient.cs: implemented all missing properties and methods except
  595. UploadFile.
  596. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  597. * FileWebRequestCreator.cs: splitted from WebRequest.
  598. * HttpRequestCreator.cs: splitted fromWebRequest.
  599. * WebRequest.cs: added methods that are used by the new configuration
  600. handler to set prefix/type name requests creators.
  601. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  602. * AuthenticationManager.cs:
  603. * Authorization.cs:
  604. * BasicClient.cs: new file.
  605. * ChunkStream.cs: new file.
  606. * Cookie.cs:
  607. * CookieContainer.cs:
  608. * GlobalProxySelection.cs:
  609. * HttpWebRequest.cs:
  610. * HttpWebResponse.cs:
  611. * IAuthenticationModule.cs:
  612. * ServicePoint.cs:
  613. * ServicePointManager.cs:
  614. * WebAsyncResult.cs: new file.
  615. * WebConnection.cs: new file.
  616. * WebConnectionData.cs: new file.
  617. * WebConnectionGroup.cs: new file.
  618. * WebConnectionStream.cs: new file.
  619. * WebException.cs:
  620. * WebHeaderCollection.cs:
  621. * WebProxy.cs:
  622. * WebResponse.cs:
  623. Reworked HttpWebRequest and related classes.
  624. 2003-05-30 Miguel de Icaza <[email protected]>
  625. * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
  626. InternalServerError (500)
  627. 2003-05-29 Miguel de Icaza <[email protected]>
  628. * HttpWebRequest.cs (Close): Move the code that accumulates the
  629. output to Close from Flush. Flush could have been called in the
  630. middle of the processing, and would have generated invalid results
  631. (which it did).
  632. 2003-05-23 Zoltan Varga <[email protected]>
  633. * Dns.cs (GetHostByAddress): Return the local host when called with
  634. IF_ANY.
  635. 2003-04-29 Miguel de Icaza <[email protected]>
  636. * WebClient.cs (DownloadData): Close the underlyng stream.
  637. (DownloadFile): Use using, so the file gets closed.
  638. 2003-04-24 Miguel de Icaza <[email protected]>
  639. * WebClient.cs (DownloadData): Instead of using a MemoryStream,
  640. keep track of all the small chunks in an ArrayList. The
  641. MemoryStream had the property of reallocating itself, and the
  642. problem was that MemoryStream.GetBuffer would return the buffer
  643. (correctly), but not something of the right size. So clients of
  644. DownloadData would get the extra unused bytes as part of the
  645. result.
  646. The solution would have been to make another copy at this point,
  647. instead, we only keep the small allocations around in the
  648. ArrayList, and we only do one large allocation at the end.
  649. * HttpWebResponse.cs: If there is a Content-Length header, pass
  650. this information to our HttpWebResponseStream, so it knows when to
  651. stop, instead of waiting for the stream to be shut down by the
  652. other end.
  653. * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
  654. the underlying stream if the method will do a content transfer and
  655. no Content-Length was provided. If not (HEAD and GET or
  656. Content-Length provided), keep going.
  657. 2003-04-23 Miguel de Icaza <[email protected]>
  658. * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
  659. the ContentLength specified on the request. If that happens, we
  660. have to accumulate all the data written, and once we accumulate
  661. the data, we send it off.
  662. Notice that the documentation in .NET is actually incorrect, they
  663. state that setting ContentLength is mandatory. It is not.
  664. 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
  665. * HttpWebResponse.cs: fixes bug #41180.
  666. 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
  667. * HttpWebRequest.cs: throw an exception is the response code is >= 300.
  668. 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
  669. * HttpWebRequest.cs: implemented IDisposable, make the request stream
  670. read only. Changed the way of disposing the socket.
  671. * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
  672. handle chunked transfer encoding (no more hangs), added serialization
  673. stuff, call CheckDisposed at the beginning of methods/properties (not
  674. in a finally clause).
  675. 2003-02-17 Nick Drochak <[email protected]>
  676. * WebClient.cs : Implemented Credentials property.
  677. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  678. * SocketAddress.cs: byte 1 of the data is the high byte of the family,
  679. not the size.
  680. 2003-01-29 Atsushi Enomoto <[email protected]>
  681. * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
  682. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  683. * HttpWebRequest.cs: applied patch from Tim Haynes
  684. ([email protected]).
  685. Avoided double-sending of the request to the server when both
  686. GetRequestStream() and GetResponse() are called.
  687. System Header attributes survive the Headers attribute set.
  688. Added handling of Connection: KeepAlive/Close
  689. 2002-10-03 Dick Porter <[email protected]>
  690. * Dns.cs: Fixed GetHostName()
  691. 2002-09-09 Gonzalo Paniagua Javier <[email protected]>
  692. * HttpWebRequest.cs:
  693. * HttpWebResponse.cs: applied another patch from Shahms E. King
  694. ([email protected]).
  695. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  696. * HttpWebRequest.cs:
  697. * HttpWebResponse.cs: applied patch from Shahms E. King
  698. ([email protected]).
  699. 2002-05-29 Lawrence Pit <[email protected]>
  700. * MonoHttpDate.cs: added
  701. * HttpWebRequest.cs: using MonoHttpDate
  702. * HttpWebResponse.cs: using MonoHttpDate
  703. * DnsPermission.cs: correct XML output
  704. * SocketPermission.cs: correct XML output
  705. 2002-05-21 Lawrence Pit <[email protected]>
  706. * WebClient.cs: stubbed
  707. * WebProxy.cs: fixed bug; had to change internal representation
  708. of bypasslist to ArrayList, different implementation of checking
  709. regex's.
  710. 2002-05-20 Lawrence Pit <[email protected]>
  711. * WebProxy.cs: added, implemented
  712. * ServicePoint.cs: implemented most
  713. * ServicePointManager.cs: implemented
  714. * HttpWebRequest.cs: started implementation
  715. * HttpWebResponse.cs: improved disposable routines
  716. * FileWebRequest.cs: slight improvement of Close method
  717. 2002-05-19 Lawrence Pit <[email protected]>
  718. * FileWebRequest.cs: finished implementation of async methods.
  719. * FileWebResponse.cs: improved disposable routines.
  720. * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods,
  721. byte ordering of address was backwards.
  722. 2002-05-13 Lawrence Pit <[email protected]>
  723. * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
  724. relying on standard asynchronous delegate features. Added checks for
  725. null strings.
  726. * HttpWebResponse.cs: implemented properties
  727. * FileWebResponse.cs: improved the way resources are disposed.
  728. * FileWebRequest.cs: started implementation of asynchronous methods
  729. * ServicePointManager.cs: implemented properties
  730. 2002-05-12 Lawrence Pit <[email protected]>
  731. * HttpWebRequest.cs: properties implemented
  732. * HttpWebResponse.cs: added
  733. * GlobalProxySelection.cs: implemented
  734. * FileWebResponse.cs: added
  735. * FileWebRequest.cs: some methods implemented
  736. 2002-05-11 Lawrence Pit <[email protected]>
  737. * WebHeaderCollection.cs: implemented
  738. * WebRequest.cs: implemented
  739. * FileWebRequest.cs and HttpWebRequest.cs stubs added
  740. 2002-05-09 Lawrence Pit <[email protected]>
  741. * Rewrote IPAddress.Parse method, passing all unit tests
  742. 2002-05-09 Lawrence Pit <[email protected]>
  743. * fixed bug in IPEndPoint.Equals method
  744. * fixed bug in IPAddress.Parse method
  745. * fixed bug in IPAddress.SwapLong method
  746. * fixed several bugs in Cookie.cs
  747. 2002-05-06 Lawrence Pit <[email protected]>
  748. * WebRequest.cs: added
  749. * WebResponse.cs: implemented
  750. * WebException.cs: implemented
  751. * WebHeaderCollection.cs: added
  752. * HttpVersion.cs: implemented
  753. * HttpContinueDelegate.cs: added
  754. * IWebProxy.cs: added
  755. * IWebRequestCreate.cs: added
  756. * ICertificatePolicy.cs: added
  757. * ServicePoint.cs: stubbed
  758. * ServicePointManager.cs: stubbed
  759. * CookieContainer.cs: added
  760. * Authorization.cs: implemented
  761. 2002-05-05 Lawrence Pit <[email protected]>
  762. * CredentialCache.cs: implemented
  763. 2002-05-05 Lawrence Pit <[email protected]>
  764. * IPAddress.cs: fixed IsLoopback, address was already in host order
  765. 2002-05-05 Lawrence Pit <[email protected]>
  766. * IPv6Address.cs: added (note: not part of .net spec)
  767. 2002-05-01 Lawrence Pit <[email protected]>
  768. * DnsPermission.cs: implemented
  769. * DnsPermissionAttribute.cs: implemented
  770. 2002-04-28 Lawrence Pit <[email protected]>
  771. * EndpointPermission.cs: implemented
  772. * SocketPermission.cs: implemented
  773. * SocketPermissionAttribute.cs: implemented
  774. * ProtocolViolationException.cs: implemented
  775. * Dns.c: passing w32 error code when no host found
  776. 2002-04-27 Lawrence Pit <[email protected]>
  777. * Cookie.cs: implemented
  778. * CookieCollection.cs: implemented
  779. * CookieException.cs: implemented
  780. 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
  781. * IPAddress.cs: initialize the read only fields with Parse().
  782. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  783. * IPAddress.cs: little changes to behave as MS.
  784. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  785. * Dns.cs (Resolve): behave as MS. Agreed with Mads.
  786. 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
  787. * IPAddress.cs: the icalls for sockets are endianness-aware. So I
  788. changed a few things. Also included a workaround for bug #23547.
  789. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  790. * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
  791. by Paolo) instead of guessing the endianness.
  792. * SocketAddress.cs: implemented Equals() and GetHashcode().
  793. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  794. * IPEndPoint.cs: modifications to constructors according to the
  795. specifications (suggested by Lawrence Pit).
  796. 2002-04-15 Patrik Torstensson <[email protected]>
  797. * IPEndPoint.cs: Fixed build breaker.
  798. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  799. * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
  800. complete.
  801. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  802. * IPAddress.cs: finished all MonoTODO's. Use network order to store
  803. the address. Check for max and min values in Address:set. IsLoopback()
  804. returns now true for all 127.x.y.z. Some more checks in Parse ().
  805. Some changes to behave as MS does.
  806. 2002-02-24 Duncan Mak <[email protected]>
  807. * ICredentialLookup.cs: Added the GetCredential method to the
  808. interface. The interface is named "ICredentials", should this file
  809. be renamed?
  810. * NetworkCredential.cs: Added to CVS. Need to investigate on how
  811. GetCredential() works
  812. 2002-01-23 Dick Porter <[email protected]>
  813. * SocketAddress.cs: Implemented.
  814. * IPEndPoint.cs: Turned 'Address' field into a real property.
  815. Implemented Create() and Serialize() methods.
  816. * IPAddress.cs: Fixed class constructor, turned 'Address' field
  817. into a real property. Removed undocumented "public
  818. IPAddress(string)" constructor.
  819. * EndPoint.cs: Implemented. All methods return
  820. NotSupportedException to enforce subclass overriding.
  821. * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
  822. P/Invokes with portable internal calls.
  823. 2002-01-17 Miguel de Icaza <[email protected]>
  824. * Dns.cs: Updated to API changes.
  825. * IPAddress.cs: Updated API. Much left to implement.
  826. * Dns.cs: Remove IPToString method
  827. 2002-01-06 Ravi Pratap <[email protected]>
  828. * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
  829. attribute insertion.
  830. 2001-11-22 Nick Drochak <[email protected]>
  831. * IPAddress.cs: Fix constructor bug, properly name Address property,
  832. and use triple-slash for comments.
  833. 2001-11-20 Miguel de Icaza <[email protected]>
  834. * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
  835. None as suggested by Phillip.
  836. 2001-09-26 Mads Pultz <[email protected]>
  837. * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
  838. 2001-09-24 Mads Pultz <[email protected]>
  839. * Dns.cs: Minor changes (some print statements removed)
  840. 2001-09-23 Mads Pultz <[email protected]>
  841. * Dns.cs: Initial work submitted to repository.
  842. * IPHostEntry.cs: Initial work submitted to repository.
  843. 2001-07-12 Sean MacIsaac <[email protected]>
  844. * Authorization.cs: Fixed compiler error.
  845. * IAuthenticationModule.cs: Changes for Beta2.
  846. * IPAddress.cs: Internal storage changed to be uint not int.
  847. * IPEndPoint.cs: Fixed compiler error.
  848. * EndPoint.cs: Fixed compiler error.
  849. * AuthenticationManager.cs: Fixed typo.