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]

RE: Win95 and sockets


Sergey Okhapkin wrote:
>problem - looks like sockets are non-inheritable on Windows95... Inetd/telnetd works 

The following (MSVC compiled) program prints "closesocket OK" on NT and "closesocket error" on w95.


#include <windows.h>
#include <string.h>
#include <stdio.h>

main(ac,av)
char **av;
{
        SOCKET s;
        static char buf[1024];

        WSADATA WSAData;
        if (WSAStartup(MAKEWORD(1,1), &WSAData)) {
                printf("WSAStartup failed (%d)\n",WSAGetLastError());
                return 255;
        }

        if (ac > 1) {
	             s = atoi (av[1]);
                if (closesocket(s))
                        printf("closesocket error\n");
                else
                        printf("closesocket OK\n");
                exit(0);
        }
        if((s=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP))<=0){
                printf("socket error(%d)\n",WSAGetLastError());
                return 0;
        }
        sprintf(buf, "%s %d", av[0], s);
        system(buf);

        WSACleanup();
}



-- 
Sergey Okhapkin, http://www.lexa.ru/sos
Moscow, Russia
Looking for a job

-
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]