ChangeLog 41 KB

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