ChangeLog 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. 2002-05-01 Lawrence Pit <[email protected]>
  2. * DnsPermission.cs: implemented
  3. * DnsPermissionAttribute.cs: implemented
  4. 2002-04-28 Lawrence Pit <[email protected]>
  5. * EndpointPermission.cs: implemented
  6. * SocketPermission.cs: implemented
  7. * SocketPermissionAttribute.cs: implemented
  8. * ProtocolViolationException.cs: implemented
  9. * Dns.c: passing w32 error code when no host found
  10. 2002-04-27 Lawrence Pit <[email protected]>
  11. * Cookie.cs: implemented
  12. * CookieCollection.cs: implemented
  13. * CookieException.cs: implemented
  14. 2002-04-24 Gonzalo Paniagua Javier <[email protected]>
  15. * IPAddress.cs: initialize the read only fields with Parse().
  16. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  17. * IPAddress.cs: little changes to behave as MS.
  18. 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
  19. * Dns.cs (Resolve): behave as MS. Agreed with Mads.
  20. 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
  21. * IPAddress.cs: the icalls for sockets are endianness-aware. So I
  22. changed a few things. Also included a workaround for bug #23547.
  23. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  24. * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
  25. by Paolo) instead of guessing the endianness.
  26. * SocketAddress.cs: implemented Equals() and GetHashcode().
  27. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  28. * IPEndPoint.cs: modifications to constructors according to the
  29. specifications (suggested by Lawrence Pit).
  30. 2002-04-15 Patrik Torstensson <[email protected]>
  31. * IPEndPoint.cs: Fixed build breaker.
  32. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  33. * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
  34. complete.
  35. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  36. * IPAddress.cs: finished all MonoTODO's. Use network order to store
  37. the address. Check for max and min values in Address:set. IsLoopback()
  38. returns now true for all 127.x.y.z. Some more checks in Parse ().
  39. Some changes to behave as MS does.
  40. 2002-02-24 Duncan Mak <[email protected]>
  41. * ICredentialLookup.cs: Added the GetCredential method to the
  42. interface. The interface is named "ICredentials", should this file
  43. be renamed?
  44. * NetworkCredential.cs: Added to CVS. Need to investigate on how
  45. GetCredential() works
  46. 2002-01-23 Dick Porter <[email protected]>
  47. * SocketAddress.cs: Implemented.
  48. * IPEndPoint.cs: Turned 'Address' field into a real property.
  49. Implemented Create() and Serialize() methods.
  50. * IPAddress.cs: Fixed class constructor, turned 'Address' field
  51. into a real property. Removed undocumented "public
  52. IPAddress(string)" constructor.
  53. * EndPoint.cs: Implemented. All methods return
  54. NotSupportedException to enforce subclass overriding.
  55. * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
  56. P/Invokes with portable internal calls.
  57. 2002-01-17 Miguel de Icaza <[email protected]>
  58. * Dns.cs: Updated to API changes.
  59. * IPAddress.cs: Updated API. Much left to implement.
  60. * Dns.cs: Remove IPToString method
  61. 2002-01-06 Ravi Pratap <[email protected]>
  62. * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
  63. attribute insertion.
  64. 2001-11-22 Nick Drochak <[email protected]>
  65. * IPAddress.cs: Fix constructor bug, properly name Address property,
  66. and use triple-slash for comments.
  67. 2001-11-20 Miguel de Icaza <[email protected]>
  68. * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
  69. None as suggested by Phillip.
  70. 2001-09-26 Mads Pultz <[email protected]>
  71. * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
  72. 2001-09-24 Mads Pultz <[email protected]>
  73. * Dns.cs: Minor changes (some print statements removed)
  74. 2001-09-23 Mads Pultz <[email protected]>
  75. * Dns.cs: Initial work submitted to repository.
  76. * IPHostEntry.cs: Initial work submitted to repository.
  77. 2001-07-12 Sean MacIsaac <[email protected]>
  78. * Authorization.cs: Fixed compiler error.
  79. * IAuthenticationModule.cs: Changes for Beta2.
  80. * IPAddress.cs: Internal storage changed to be uint not int.
  81. * IPEndPoint.cs: Fixed compiler error.
  82. * EndPoint.cs: Fixed compiler error.
  83. * AuthenticationManager.cs: Fixed typo.