ChangeLog 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  1. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  2. * MonoHttpDate.cs: use the invariant culture, not en-US. Suspected
  3. guilty for bug 52629.
  4. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  5. * CredentialCache.cs: return null instead of throwing NotImplemented.
  6. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  7. * HttpWebRequest.cs: fixed checking if method allows a body. Patch by
  8. Benjamin Jemlich ([email protected]).
  9. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  10. * HttpWebRequest.cs: deal with authentication schemes that have more
  11. than 1 round trip (Ntlm).
  12. 2003-12-11 Gonzalo Paniagua Javier <[email protected]>
  13. * NtlmClient.cs: new class that actually uses one from Mono.Http to do
  14. the authentication.
  15. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  16. * HttpWebRequest.cs: when building the redirect URI, use the previous
  17. one as the base URI, which makes relative URIs work.
  18. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  19. * DigestClient.cs: merged in code from Sebastien Pouliot and Greg
  20. Reinacker that Supports cnonce and preauthentication.
  21. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  22. * DigestClient.cs: initial Digest authentication. Works with apache
  23. mod_digest.
  24. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  25. * HttpWebRequest.cs: removed unneeded StringBuilder.
  26. * WebConnection.cs: default to keep the connection open for HTTP/1.1
  27. only or HTTP/1.0 + (Proxy-)Connection header. Fixes bug #51208.
  28. 2003-11-17 Gonzalo Paniagua Javier <[email protected]>
  29. * WebConnection.cs: turns out that socket.Connected is not useful until
  30. we actually try to send/receive data, even if the other end has already
  31. closed the socket. Added TryReconnect() and Connected.
  32. * WebConnectionData.cs: default value for StatusCode is 0 now.
  33. * WebConnectionGroup.cs: reuse the connection since the beginning,
  34. instead of opening up to ConnectionLimit and then reusing.
  35. * WebConnectionStream.cs: reopen the socket if we're trying to reuse
  36. one which fails on first write.
  37. 2003-11-14 Gonzalo Paniagua Javier <[email protected]>
  38. * WebConnectionStream.cs: when a callback is passed to BeginRead/Write,
  39. wrap it and do our job before calling it. Fixes bug #48497.
  40. 2003-11-12 Andreas Nahr <[email protected]>
  41. * WebExceptionStatus.cs: Restyled, Added .Net 1.1 members
  42. * SecurityProtocolType.cs: Added and implemented
  43. 2003-11-12 Gonzalo Paniagua Javier <[email protected]>
  44. * HttpWebRequest.cs: fixed redirects when they target another host.
  45. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  46. * IPAddress.cs: prevent exceptions when trying to parse the static IPv6
  47. addresses.
  48. 2003-10-17 Pedro Martínez Juliá <[email protected]>
  49. * WebClient.cs: use Path.DirectorySeparator instead of "/" for
  50. windows compatibility. Add some checks for file paths like
  51. "C:/xxx/yyy/..." and like "/home/xxx/...".
  52. 2003-10-16 Pedro Martínez Juliá <[email protected]>
  53. * WebClient.cs: added a slash between directory and file names.
  54. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  55. * HttpWebRequest.cs:
  56. * HttpWebResponse.cs: better abort handling and leave the stream in a
  57. stable status on abort.
  58. 2003-10-12 Pedro Martínez Juliá <[email protected]>
  59. * WebClient.cs: refine reading of local files (like MS.NET).
  60. 2003-10-10 Pedro Martínez Juliá <[email protected]>
  61. * WebClient.cs: MS.NET works right when we try OpenRead("file.txt")
  62. but we didn't. Now, when Uri fails with an exception, it adds
  63. "file://" before the URI and tries again.
  64. 2003-10-09 Gonzalo Paniagua Javier <[email protected]>
  65. * ServicePoint.cs: preparing for recycling. Not yet finished.
  66. * ServicePointManager.cs: this is the one that reads config.
  67. * WebConnectionGroup.cs: don't read config here.
  68. * WebConnection.cs: added the queue again. Launch queued requests on
  69. error.
  70. 2003-10-08 Gonzalo Paniagua Javier <[email protected]>
  71. * WebConnection.cs: the queue is now handled by the threadpool.
  72. Initialize the connection data in a place where it does not depend on
  73. the execution order of the requests in threadpool. More error handling.
  74. * WebConnectionGroup.cs: use the limits in the config file and reuse
  75. connections when the limit is reached.
  76. 2003-10-02 Gonzalo Paniagua Javier <[email protected]>
  77. * HttpWebRequest.cs: handle 304 à la MS.
  78. * WebConnection.cs: set the response data when reading 0 bytes.
  79. 2003-09-16 Gonzalo Paniagua Javier <[email protected]>
  80. * WebConnectionStream.cs: fix by Lluis to avoid the stream being in an
  81. invalid state.
  82. 2003-08-14 Nick Drochak <[email protected]>
  83. * WebRequest.cs: Check lower case string since that is what we will add.
  84. 2003-08-04 Jerome Laban <[email protected]>
  85. * IPHostEntry.cs: Default contructor must not initialize members.
  86. (Fixes bug #45575).
  87. 2003-07-27 Andreas Nahr <[email protected]>
  88. * CredentialCache.cs: Removed undefined serializable attribute
  89. 2003-07-20 Gonzalo Paniagua Javier <[email protected]>
  90. * ChunkStream.cs:
  91. (WantMore): true if we've not received the last chunk yet. Fixes
  92. bug #45463. Thanks to Miguel for tracking this down and providing a
  93. test case.
  94. * WebConnection.cs: removed bogus ^M's.
  95. * WebHeaderCollection.cs: provide more info when the header or value is
  96. wrong.
  97. 2003-07-15 Andreas Nahr <[email protected]>
  98. * ChunkStream.cs: Removed unused members
  99. * IPAddress.cs: Removed unused exception variable, fixes compiler
  100. warning.
  101. * WebConnection.cs: Removed unused exception variables, fixes compiler
  102. warnings.
  103. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  104. * NetConfig.cs: If Clone method is not public, then it must use
  105. explicit interface method implementation syntax.
  106. 2003-07-14 Jerome Laban <[email protected]>
  107. * Dns.cs: Reworked indentation.
  108. Added IPv6 support.
  109. Added literal address checking in GetHostByAddress.
  110. Changed Dns.Resolve behavior.
  111. * IPAddress.cs:
  112. * IPEndPoint.cs: Added IPv6 support.
  113. * IPv6Address.cs: Added address compression.
  114. * NetConfig.cs: Added configuration section.
  115. 2003-07-14 Jerome Laban <[email protected]>
  116. * ServicePoint.cs: Removed Connect and GetEndPoint methods.
  117. Removed reverse resolution when uri is literal IP address.
  118. * WebConnection.cs: IPv6 compatibility update: Try to connect
  119. to all addresses returned by IPHostEntry.
  120. * WebConnectionGroup.cs: Removed unused parameter.
  121. 2003-07-13 Andreas Nahr <[email protected]>
  122. * WebProxy.cs: Add serialization/ deserialization support
  123. 2003-07-10 Andreas Nahr <[email protected]>
  124. * ProxyUseType.cs:
  125. * WebStatus.cs: Deleted (do not exist in this assembly)
  126. * IPv6Address.cs: Made internal
  127. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  128. * HttpWebRequest.cs:
  129. * ServicePointManager.cs:
  130. * WebConnection.cs: added support for proxies.
  131. 2003-07-05 Andreas Nahr <[email protected]>
  132. * DnsPermissionAttribute.cs:
  133. * SocketPermissionAttribute.cs: Fixed wrong AttributeUsageAttribute
  134. 2003-07-05 Andreas Nahr <[email protected]>
  135. * WebPermission.cs: Added and partially implemented
  136. * WebPermissionAttribute.cs: Added and implemented
  137. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  138. * WebClient.cs: fixed bug #45651.
  139. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  140. * WebClient.cs: Small fix by Sebastian <[email protected]>.
  141. 2003-06-29 Gonzalo Paniagua Javier <[email protected]>
  142. * WebConnection.cs: fixed header writing the reusing a connection and
  143. the server does not send 100-continue response.
  144. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  145. * WebConnection.cs: close the socket and connection when disposing.
  146. * WebRequest.cs: removed setter for RequestUri. Allow non-public ctors
  147. when creating instances.
  148. * HttpWebRequest.cs:
  149. * HttpWebResponse.cs:
  150. * FileWebRequest.cs: support serialization.
  151. * FileWebResponse.cs: support serialization and fixed dispose checks.
  152. * FileWebRequestCreator.cs:
  153. * HttpRequestCreator.cs: added internal .ctor.
  154. 2003-06-24 Lluis Sanchez Gual <[email protected]>
  155. * HttpWebRequest.cs: SetWriteStream(): SendRequestHeaders should be
  156. called before asyncWrite.SetCompleted, to make sure that the waiting
  157. thread does not start to send more information before
  158. SendRequestHeaders has finished.
  159. 2003-06-22 Lluis Sanchez Gual <[email protected]>
  160. * WebConnectionStream.cs: Only increment pendingReads if an asynchronous
  161. read is really needed.
  162. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  163. * WebHeaderCollection.cs: prevent duplication headers used niternally.
  164. 2003-06-14 Gonzalo Paniagua Javier <[email protected]>
  165. * HttpWebRequest.cs: if CookieContainer has not been set, make
  166. HttpWebResponse ignore Set-Cookie* headers.
  167. * HttpWebResponse.cs: Set-Cookie and Set-Cookie headers removed if
  168. CookieContainer have been provided to the request.
  169. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  170. * AuthenticationManager.cs: get the list of authentication modules from
  171. the configuration files. Added Clear and fixed Unregister.
  172. * BasicClient.cs: fully implemented.
  173. * HttpWebRequest.cs: added support for Basic authentication when
  174. credentials are set.
  175. * NetworkCredential.cs: fixed GetCredential.
  176. 2003-06-13 Gonzalo Paniagua Javier <[email protected]>
  177. * HttpWebRequest.cs: *really* take care of requestSent to prevent
  178. sending the same request twice.
  179. * WebAsyncResult.cs: don't close the handle. Just Reset.
  180. * WebConnectionStream.cs: removed unneeded line.
  181. 2003-06-12 Gonzalo Paniagua Javier <[email protected]>
  182. * HttpWebRequest.cs: use InternalClose when we are not going to send the
  183. rest of the request stream because of an error after sending the
  184. headers.
  185. * WebConnection.cs: check for completion after setting the response.
  186. Enable reading in NextRead.
  187. * WebConnectionStream.cs: re-fixed the count for partially buffered
  188. reads. If the network stream returns 0 bytes, we're done.
  189. 2003-06-11 Gonzalo Paniagua Javier <[email protected]>
  190. * WebClient.cs: implemented UploadFile. Fixed SetupRequest to set the
  191. special headers *after* the others.
  192. 2003-06-10 Gonzalo Paniagua Javier <[email protected]>
  193. * WebConnectionStream.cs: when the read is partially filled from the
  194. initial buffer, add those bytes too. Thanks to Lluis for debugging this.
  195. 2003-06-09 Gonzalo Paniagua Javier <[email protected]>
  196. * HttpWebRequest.cs: added ExpectContinue property.
  197. * WebConnection.cs: allow 100 Continue to be delayed after waiting for
  198. it.
  199. 2003-06-08 Gonzalo Paniagua Javier <[email protected]>
  200. * HttpWebRequest.cs: don't send "Expect: 100-continue" is the server
  201. is known not to respond to that.
  202. * ServicePoint.cs: added SendContinue property.
  203. * WebConnection.cs: only wait 2 seconds for a continue reply. If it
  204. timeouts, set SendContinue to false and proceeed sending data.
  205. * WebConnectionStream.cs: if 100-continue is not received and instead we
  206. get a 417 or anything else, don't send the data.
  207. * WebClient.cs: implemented all missing properties and methods except
  208. UploadFile.
  209. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  210. * FileWebRequestCreator.cs: splitted from WebRequest.
  211. * HttpRequestCreator.cs: splitted fromWebRequest.
  212. * WebRequest.cs: added methods that are used by the new configuration
  213. handler to set prefix/type name requests creators.
  214. 2003-06-06 Gonzalo Paniagua Javier <[email protected]>
  215. * AuthenticationManager.cs:
  216. * Authorization.cs:
  217. * BasicClient.cs: new file.
  218. * ChunkStream.cs: new file.
  219. * Cookie.cs:
  220. * CookieContainer.cs:
  221. * GlobalProxySelection.cs:
  222. * HttpWebRequest.cs:
  223. * HttpWebResponse.cs:
  224. * IAuthenticationModule.cs:
  225. * ServicePoint.cs:
  226. * ServicePointManager.cs:
  227. * WebAsyncResult.cs: new file.
  228. * WebConnection.cs: new file.
  229. * WebConnectionData.cs: new file.
  230. * WebConnectionGroup.cs: new file.
  231. * WebConnectionStream.cs: new file.
  232. * WebException.cs:
  233. * WebHeaderCollection.cs:
  234. * WebProxy.cs:
  235. * WebResponse.cs:
  236. Reworked HttpWebRequest and related classes.
  237. 2003-05-30 Miguel de Icaza <[email protected]>
  238. * HttpWebRequest.cs (EndGetResponse): Do not throw exceptions on
  239. InternalServerError (500)
  240. 2003-05-29 Miguel de Icaza <[email protected]>
  241. * HttpWebRequest.cs (Close): Move the code that accumulates the
  242. output to Close from Flush. Flush could have been called in the
  243. middle of the processing, and would have generated invalid results
  244. (which it did).
  245. 2003-05-23 Zoltan Varga <[email protected]>
  246. * Dns.cs (GetHostByAddress): Return the local host when called with
  247. IF_ANY.
  248. 2003-04-29 Miguel de Icaza <[email protected]>
  249. * WebClient.cs (DownloadData): Close the underlyng stream.
  250. (DownloadFile): Use using, so the file gets closed.
  251. 2003-04-24 Miguel de Icaza <[email protected]>
  252. * WebClient.cs (DownloadData): Instead of using a MemoryStream,
  253. keep track of all the small chunks in an ArrayList. The
  254. MemoryStream had the property of reallocating itself, and the
  255. problem was that MemoryStream.GetBuffer would return the buffer
  256. (correctly), but not something of the right size. So clients of
  257. DownloadData would get the extra unused bytes as part of the
  258. result.
  259. The solution would have been to make another copy at this point,
  260. instead, we only keep the small allocations around in the
  261. ArrayList, and we only do one large allocation at the end.
  262. * HttpWebResponse.cs: If there is a Content-Length header, pass
  263. this information to our HttpWebResponseStream, so it knows when to
  264. stop, instead of waiting for the stream to be shut down by the
  265. other end.
  266. * HttpWebRequest.cs: Only set the `delay-header-writing' mode on
  267. the underlying stream if the method will do a content transfer and
  268. no Content-Length was provided. If not (HEAD and GET or
  269. Content-Length provided), keep going.
  270. 2003-04-23 Miguel de Icaza <[email protected]>
  271. * HttpWebRequest.cs: .NET Allows the HttpWebRequest to not have
  272. the ContentLength specified on the request. If that happens, we
  273. have to accumulate all the data written, and once we accumulate
  274. the data, we send it off.
  275. Notice that the documentation in .NET is actually incorrect, they
  276. state that setting ContentLength is mandatory. It is not.
  277. 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
  278. * HttpWebResponse.cs: fixes bug #41180.
  279. 2003-03-25 Gonzalo Paniagua Javier <[email protected]>
  280. * HttpWebRequest.cs: throw an exception is the response code is >= 300.
  281. 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
  282. * HttpWebRequest.cs: implemented IDisposable, make the request stream
  283. read only. Changed the way of disposing the socket.
  284. * HttpWebResponse.cs: wrapped the socket in a write-only NetworkStream,
  285. handle chunked transfer encoding (no more hangs), added serialization
  286. stuff, call CheckDisposed at the beginning of methods/properties (not
  287. in a finally clause).
  288. 2003-02-17 Nick Drochak <[email protected]>
  289. * WebClient.cs : Implemented Credentials property.
  290. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  291. * SocketAddress.cs: byte 1 of the data is the high byte of the family,
  292. not the size.
  293. 2003-01-29 Atsushi Enomoto <[email protected]>
  294. * WebClient.cs : hacked OpenRead, DownloadData and DownloadFile.
  295. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  296. * HttpWebRequest.cs: applied patch from Tim Haynes
  297. ([email protected]).
  298. Avoided double-sending of the request to the server when both
  299. GetRequestStream() and GetResponse() are called.
  300. System Header attributes survive the Headers attribute set.
  301. Added handling of Connection: KeepAlive/Close
  302. 2002-10-03 Dick Porter <[email protected]>
  303. * Dns.cs: Fixed GetHostName()
  304. 2002-09-09 Gonzalo Paniagua Javier <[email protected]>
  305. * HttpWebRequest.cs:
  306. * HttpWebResponse.cs: applied another patch from Shahms E. King
  307. ([email protected]).
  308. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  309. * HttpWebRequest.cs:
  310. * HttpWebResponse.cs: applied patch from Shahms E. King
  311. ([email protected]).
  312. 2002-05-29 Lawrence Pit <[email protected]>
  313. * MonoHttpDate.cs: added
  314. * HttpWebRequest.cs: using MonoHttpDate
  315. * HttpWebResponse.cs: using MonoHttpDate
  316. * DnsPermission.cs: correct XML output
  317. * SocketPermission.cs: correct XML output
  318. 2002-05-21 Lawrence Pit <[email protected]>
  319. * WebClient.cs: stubbed
  320. * WebProxy.cs: fixed bug; had to change internal representation
  321. of bypasslist to ArrayList, different implementation of checking
  322. regex's.
  323. 2002-05-20 Lawrence Pit <[email protected]>
  324. * WebProxy.cs: added, implemented
  325. * ServicePoint.cs: implemented most
  326. * ServicePointManager.cs: implemented
  327. * HttpWebRequest.cs: started implementation
  328. * HttpWebResponse.cs: improved disposable routines
  329. * FileWebRequest.cs: slight improvement of Close method
  330. 2002-05-19 Lawrence Pit <[email protected]>
  331. * FileWebRequest.cs: finished implementation of async methods.
  332. * FileWebResponse.cs: improved disposable routines.
  333. * IPEndPoint.cs: fixed bug #24666 in Serialize and Create methods,
  334. byte ordering of address was backwards.
  335. 2002-05-13 Lawrence Pit <[email protected]>
  336. * Dns.cs: Reimplemented (simplified and fixed) asynchronous methods by
  337. relying on standard asynchronous delegate features. Added checks for
  338. null strings.
  339. * HttpWebResponse.cs: implemented properties
  340. * FileWebResponse.cs: improved the way resources are disposed.
  341. * FileWebRequest.cs: started implementation of asynchronous methods
  342. * ServicePointManager.cs: implemented properties
  343. 2002-05-12 Lawrence Pit <[email protected]>
  344. * HttpWebRequest.cs: properties implemented
  345. * HttpWebResponse.cs: added
  346. * GlobalProxySelection.cs: implemented
  347. * FileWebResponse.cs: added
  348. * FileWebRequest.cs: some methods implemented
  349. 2002-05-11 Lawrence Pit <[email protected]>
  350. * WebHeaderCollection.cs: implemented
  351. * WebRequest.cs: implemented
  352. * FileWebRequest.cs and HttpWebRequest.cs stubs added
  353. 2002-05-09 Lawrence Pit <[email protected]>
  354. * Rewrote IPAddress.Parse method, passing all unit tests
  355. 2002-05-09 Lawrence Pit <[email protected]>
  356. * fixed bug in IPEndPoint.Equals method
  357. * fixed bug in IPAddress.Parse method
  358. * fixed bug in IPAddress.SwapLong method
  359. * fixed several bugs in Cookie.cs
  360. 2002-05-06 Lawrence Pit <[email protected]>
  361. * WebRequest.cs: added
  362. * WebResponse.cs: implemented
  363. * WebException.cs: implemented
  364. * WebHeaderCollection.cs: added
  365. * HttpVersion.cs: implemented
  366. * HttpContinueDelegate.cs: added
  367. * IWebProxy.cs: added
  368. * IWebRequestCreate.cs: added
  369. * ICertificatePolicy.cs: added
  370. * ServicePoint.cs: stubbed
  371. * ServicePointManager.cs: stubbed
  372. * CookieContainer.cs: added
  373. * Authorization.cs: implemented
  374. 2002-05-05 Lawrence Pit <[email protected]>
  375. * CredentialCache.cs: implemented
  376. 2002-05-05 Lawrence Pit <[email protected]>
  377. * IPAddress.cs: fixed IsLoopback, address was already in host order
  378. 2002-05-05 Lawrence Pit <[email protected]>
  379. * IPv6Address.cs: added (note: not part of .net spec)
  380. 2002-05-01 Lawrence Pit <[email protected]>
  381. * DnsPermission.cs: implemented
  382. * DnsPermissionAttribute.cs: implemented
  383. 2002-04-28 Lawrence Pit <[email protected]>
  384. * EndpointPermission.cs: implemented
  385. * SocketPermission.cs: implemented
  386. * SocketPermissionAttribute.cs: implemented
  387. * ProtocolViolationException.cs: implemented
  388. * Dns.c: passing w32 error code when no host found
  389. 2002-04-27 Lawrence Pit <[email protected]>
  390. * Cookie.cs: implemented
  391. * CookieCollection.cs: implemented
  392. * CookieException.cs: implemented
  393. 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
  394. * IPAddress.cs: initialize the read only fields with Parse().
  395. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  396. * IPAddress.cs: little changes to behave as MS.
  397. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  398. * Dns.cs (Resolve): behave as MS. Agreed with Mads.
  399. 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
  400. * IPAddress.cs: the icalls for sockets are endianness-aware. So I
  401. changed a few things. Also included a workaround for bug #23547.
  402. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  403. * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
  404. by Paolo) instead of guessing the endianness.
  405. * SocketAddress.cs: implemented Equals() and GetHashcode().
  406. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  407. * IPEndPoint.cs: modifications to constructors according to the
  408. specifications (suggested by Lawrence Pit).
  409. 2002-04-15 Patrik Torstensson <[email protected]>
  410. * IPEndPoint.cs: Fixed build breaker.
  411. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  412. * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
  413. complete.
  414. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  415. * IPAddress.cs: finished all MonoTODO's. Use network order to store
  416. the address. Check for max and min values in Address:set. IsLoopback()
  417. returns now true for all 127.x.y.z. Some more checks in Parse ().
  418. Some changes to behave as MS does.
  419. 2002-02-24 Duncan Mak <[email protected]>
  420. * ICredentialLookup.cs: Added the GetCredential method to the
  421. interface. The interface is named "ICredentials", should this file
  422. be renamed?
  423. * NetworkCredential.cs: Added to CVS. Need to investigate on how
  424. GetCredential() works
  425. 2002-01-23 Dick Porter <[email protected]>
  426. * SocketAddress.cs: Implemented.
  427. * IPEndPoint.cs: Turned 'Address' field into a real property.
  428. Implemented Create() and Serialize() methods.
  429. * IPAddress.cs: Fixed class constructor, turned 'Address' field
  430. into a real property. Removed undocumented "public
  431. IPAddress(string)" constructor.
  432. * EndPoint.cs: Implemented. All methods return
  433. NotSupportedException to enforce subclass overriding.
  434. * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
  435. P/Invokes with portable internal calls.
  436. 2002-01-17 Miguel de Icaza <[email protected]>
  437. * Dns.cs: Updated to API changes.
  438. * IPAddress.cs: Updated API. Much left to implement.
  439. * Dns.cs: Remove IPToString method
  440. 2002-01-06 Ravi Pratap <[email protected]>
  441. * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
  442. attribute insertion.
  443. 2001-11-22 Nick Drochak <[email protected]>
  444. * IPAddress.cs: Fix constructor bug, properly name Address property,
  445. and use triple-slash for comments.
  446. 2001-11-20 Miguel de Icaza <[email protected]>
  447. * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
  448. None as suggested by Phillip.
  449. 2001-09-26 Mads Pultz <[email protected]>
  450. * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
  451. 2001-09-24 Mads Pultz <[email protected]>
  452. * Dns.cs: Minor changes (some print statements removed)
  453. 2001-09-23 Mads Pultz <[email protected]>
  454. * Dns.cs: Initial work submitted to repository.
  455. * IPHostEntry.cs: Initial work submitted to repository.
  456. 2001-07-12 Sean MacIsaac <[email protected]>
  457. * Authorization.cs: Fixed compiler error.
  458. * IAuthenticationModule.cs: Changes for Beta2.
  459. * IPAddress.cs: Internal storage changed to be uint not int.
  460. * IPEndPoint.cs: Fixed compiler error.
  461. * EndPoint.cs: Fixed compiler error.
  462. * AuthenticationManager.cs: Fixed typo.