RE: connect() does not work with UNIX domain datagram sockets

2002-04-02 Thread DEVRIENDT ERIK
2 18:12 To: DEVRIENDT ERIK Cc: cygwin Subject: Re: connect() does not work with UNIX domain datagram sockets [...] Could you please test if it works when omitting the unlink() on the server side? Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin

RE: connect() does not work with UNIX domain datagram sockets

2002-04-02 Thread DEVRIENDT ERIK
2, 2002 18:06 To: DEVRIENDT ERIK Cc: [EMAIL PROTECTED] Subject: Re: connect() does not work with UNIX domain datagram sockets ... It may be cygwin bug. You can do a couple of things to help us to find it out. First, send a test program to the list, i'll try to reproduce the problem. Second. T

RE: connect() does not work with UNIX domain datagram sockets

2002-04-02 Thread DEVRIENDT ERIK
Some additional information about my problem : cygwin 1.3.10 running on Windows NT 4.0. Here follows a set of programs (client.c, server.c) that exhibit the problem. If you #define USE_SENDTO in client.c, the communication works. I will also send a strace to Egor Duda. Erik Devriendt #

Re: connect() does not work with UNIX domain datagram sockets

2002-04-02 Thread Corinna Vinschen
On Tue, Apr 02, 2002 at 05:50:21PM +0200, DEVRIENDT ERIK wrote: > Hi, > > I am porting a client-server set of programs that run > fine under linux. > The programs communicate using UNIX domain datagram sockets. > the server does the classic socket(), unlink(), bind() and then a loop > with read()

Re: connect() does not work with UNIX domain datagram sockets

2002-04-02 Thread egor duda
Hi! Tuesday, 02 April, 2002 DEVRIENDT ERIK [EMAIL PROTECTED] wrote: DE> I am porting a client-server set of programs that run DE> fine under linux. DE> The programs communicate using UNIX domain datagram sockets. DE> the server does the classic socket(), unlink(), bind() and then a loop DE> with

connect() does not work with UNIX domain datagram sockets

2002-04-02 Thread DEVRIENDT ERIK
Hi, I am porting a client-server set of programs that run fine under linux. The programs communicate using UNIX domain datagram sockets. the server does the classic socket(), unlink(), bind() and then a loop with read(). There is no accept() because we use datagram sockets. The problem is in the