ChangeLog 40 KB

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