2006-03-09 Gonzalo Paniagua Javier * UnixEndPoint.cs: synch'ed with the one in Mono.Unix. 2006-01-12 Miguel de Icaza * PeerCred.cs: Turn PeerCredData into a toplevel class and make it internal, so it can be used from Mono.Unix.PeerCred. 2006-01-06 Jonathan Pryor * Catalog.cs: s/libintl/intl/g, since intl.dll is used by GTK+ on Windows, not libintl.dll (according to http://www.gimp.org/~tml/gimp/win32/downloads.html). 2005-09-23 Jonathan Pryor * Catalog.cs, PeerCred.cs, Syscall.cs, UnixEndPoint.cs: [Obsolete] public types and list appropriate replacement members for Syscall.cs enumerations/structs. 2005-09-20 Jonathan Pryor * Syscall.cs: Mark types as [CLSCompliant(false)]. 2005-05-30 Ben Maurer * Syscall.cs (UnixEpoch): The DateTime for the start of the epoch may not have the same offset from GMT as does the result of addition. Therefore, do not convert the static reference point, rather convert the date we generate. Fixes bug 74266. Patch from fabrice@bellet.info (Fabrice Bellet). 2005-02-22 Gonzalo Paniagua Javier * UnixEndPoint.cs: get the correct bytes when building the filename from a SocketAddress. Fixes bug #72850. 2004-12-30 Jonathan Pryor * Syscall.cs: Add [Obsolete] to Syscall, letting users know they should use Mono.Unix.Syscall (and related types) instead. Mono.Posix.Syscall is effectively unmaintained, and should not be used. 2004-12-30 Jonathan Pryor * Syscall.cs: All syscall_ functions should explicitly specify EntryPoint so that an EntryPointNotFoundException is avoided. Fixes 70706. 2004-11-16 Jonathan Pryor * IncludeAttribute.cs: Removed. * MapAttribute.cs: Removed. * Syscall.cs: Remove [Map] and [Include] attributes. 2004-07-09 Dick Porter * PeerCred.cs: Get the unix socket peer credentials. 2004-05-26 Miguel de Icaza * Syscall.cs: Do not let the runtime handle strings, as we do not own those strings, we must transform the char * into a string ourselves. 2004-05-03 Miguel de Icaza * Syscall.cs: Add symlink 2004-04-19 Miguel de Icaza * Syscall.cs: Use hex values for FileMode, since C# does not have an octal integer mode. 2004-03-30 Joshua Tauberer * Added readlink, strerror, opendir, readdir, closedir * Added Mono.Posix.Stat.UnixToDateTime(long unixtime) --> DateTime 2004-03-11 Joshua Tauberer * Syscall.cs: Removed argument to getgid that shouldn't be there. Added getusername, getgroupname which wrap getpwuid, getgrgid without dealing with pointers to structures. Removed duplicate FileMode enum nested in Syscall class. Added stat and lstat, which use StatMode enumeration (like FileMode but nicer and complete) and Stat struct. * macros.c: Helper functions for getpwuid, getgrgid, stat, lstat. 2004-01-07 Gonzalo Paniagua Javier * Syscall.cs: moved the assembly attribute to a proper place and added 'signal.h' * make-map.cs: use reflection to invoke the properties, as it fails under MS runtime. 2004-01-05 Gonzalo Paniagua Javier * Syscall.cs: moved assembly attribute and added unsafe block to fix the build on windows. 2003-11-11 Wojciech Polak to support IsAtty. 2003-05-16 Dick Porter * UnixEndPoint.cs: New property to get and set the filename, like the IPEndPoint has for the IP address. Also implement ToString(). Tue Apr 29 16:53:56 CEST 2003 Paolo Molaro * Syscall.cs: remove the unsafe mess. 2003-02-05 Gonzalo Paniagua Javier * Check in. * UnixEndPoint.cs: first file.