Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Mon, 3 Jun 2002 15:42:43 -0400 From: Christopher Faylor To: cygwin AT cygwin DOT com Subject: Re: Duplicating Unix Domain Sockets Message-ID: <20020603194243.GD26723@redhat.com> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23.1i On Mon, Jun 03, 2002 at 03:36:56PM -0400, David E Euresti wrote: >Hello, > So I've been working on this passing file descriptor between >processes thing. And I've gotten something that works well. I'm using >cygwin_attach_handle_to_fd to create the file descriptor. Unfortunately I >can't seem to see how to create a Unix Domain socket (AF_UNIX) using this. >I've traced through all the source and can't seem to find the place to do >it. cygwin_attach_handle_to_fd is an interface intended for use with a user-level program that wants to associate an existing *windows handle* with a cygwin fd. If you are trying to add functionality to cygwin to allow fd passing then you shouldn't be using this function. It is not intended for use with cygwin-specific things like unix-domain-sockets. Those really exist only in the cygwin domain and they are already associated with an fd. If you are attempting to do this as a user program rather than as a modification to the cygwin DLL, then you are probably out-of-luck. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/