ChangeLog 42 KB

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