| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: little changes to behave as MS.
- 2002-04-18 Gonzalo Paniagua Javier <[email protected]>
- * Dns.cs (Resolve): behave as MS. Agreed with Mads.
- 2002-04-17 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: the icalls for sockets are endianness-aware. So I
- changed a few things. Also included a workaround for bug #23547.
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: use System.BitConverter.IsLittleEndian (suggested
- by Paolo) instead of guessing the endianness.
- * SocketAddress.cs: implemented Equals() and GetHashcode().
-
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPEndPoint.cs: modifications to constructors according to the
- specifications (suggested by Lawrence Pit).
- 2002-04-15 Patrik Torstensson <[email protected]>
- * IPEndPoint.cs: Fixed build breaker.
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPEndPoint.cs: implemented Equals() and GetHashCode(). Now 100%
- complete.
- 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
- * IPAddress.cs: finished all MonoTODO's. Use network order to store
- the address. Check for max and min values in Address:set. IsLoopback()
- returns now true for all 127.x.y.z. Some more checks in Parse ().
- Some changes to behave as MS does.
- 2002-02-24 Duncan Mak <[email protected]>
- * ICredentialLookup.cs: Added the GetCredential method to the
- interface. The interface is named "ICredentials", should this file
- be renamed?
- * NetworkCredential.cs: Added to CVS. Need to investigate on how
- GetCredential() works
- 2002-01-23 Dick Porter <[email protected]>
- * SocketAddress.cs: Implemented.
- * IPEndPoint.cs: Turned 'Address' field into a real property.
- Implemented Create() and Serialize() methods.
- * IPAddress.cs: Fixed class constructor, turned 'Address' field
- into a real property. Removed undocumented "public
- IPAddress(string)" constructor.
- * EndPoint.cs: Implemented. All methods return
- NotSupportedException to enforce subclass overriding.
- * Dns.cs: Replaced fixed-layout Hostent struct and cygwin
- P/Invokes with portable internal calls.
- 2002-01-17 Miguel de Icaza <[email protected]>
- * Dns.cs: Updated to API changes.
- * IPAddress.cs: Updated API. Much left to implement.
- * Dns.cs: Remove IPToString method
- 2002-01-06 Ravi Pratap <[email protected]>
- * Dns.cs, AuthenticationManager.cs, SocketAddress.cs : MonoTODO
- attribute insertion.
- 2001-11-22 Nick Drochak <[email protected]>
- * IPAddress.cs: Fix constructor bug, properly name Address property,
- and use triple-slash for comments.
- 2001-11-20 Miguel de Icaza <[email protected]>
- * IPAddress.cs: Updated to contain Any, Broadcast, Loopback and
- None as suggested by Phillip.
- 2001-09-26 Mads Pultz <[email protected]>
- * Dns.cs: Initial work on BeginGetHostByName and EndGetHostByName implemented.
- 2001-09-24 Mads Pultz <[email protected]>
- * Dns.cs: Minor changes (some print statements removed)
- 2001-09-23 Mads Pultz <[email protected]>
- * Dns.cs: Initial work submitted to repository.
- * IPHostEntry.cs: Initial work submitted to repository.
- 2001-07-12 Sean MacIsaac <[email protected]>
- * Authorization.cs: Fixed compiler error.
- * IAuthenticationModule.cs: Changes for Beta2.
- * IPAddress.cs: Internal storage changed to be uint not int.
- * IPEndPoint.cs: Fixed compiler error.
- * EndPoint.cs: Fixed compiler error.
- * AuthenticationManager.cs: Fixed typo.
|