ChangeLog 42 KB

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