ChangeLog 20 KB

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