[B20.1] Are AF_UNIX sockets supported by cygwin ?

Glenn Spell glenn@gs.fay.nc.us
Sun Jan 31 23:52:00 GMT 1999


Christine pourcelot wrote:
> 
> Does anybody know how I coul emulate AF_UNIS sockets ?

I do not know if this will work or help any at all, but from
my sources for ssh/includes.h:

#if defined(SCO) || defined(__CYGWIN32__)
/* SCO does not have a un.h and there is no appropriate substitute. */
/* Latest news: it doesn't have AF_UNIX at all, but this allows
   it to compile, and outgoing forwarded connections appear to work. */
struct	sockaddr_un {
	short	sun_family;		/* AF_UNIX */
	char	sun_path[108];		/* path name (gag) */
};
/* SCO needs sys/stream.h and sys/ptem.h */
#ifdef SCO
#include <sys/stream.h>
#include <sys/ptem.h>
#endif
#else /* SCO */
#include <sys/un.h>
#endif /* SCO */

-glenn

-- 
            Glenn Spell <glenn@gs.fay.nc.us>
         Fayetteville, North Carolina, U. S. A.
  ____________________________________________________
  ... blue skies ... happy trails ... sweet dreams ...
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list