This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

accept() and other networking functions?


Hello.

I'm having some trouble with accept() under Win95. I use gnu-win32 b18
release from ftp.cygnus.com.

Problem I'm having is the fact that accept() fails to function and
always returns -1. Same source is working nicely under Debian/GNU Linux
and NetBSD-1.1.

Are there any special tricks to get accept() working normally?

Usual bind(), socket() stuff done before this.

--- snip ---
        while(1) {
                i = sizeof(sin);
                cli_sock =
                        accept(serv_sock, (struct sockaddr *) &sin, (int *)&i);
                if(cli_sock == -1 && errno == EINTR)
                        continue;

                if(cli_sock == -1)
                        return EXIT_FAILURE;
--- snip ---

-- 
Sami Laine

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]