Win95 and sockets

Sergey Okhapkin sos@prospect.com.ru
Tue Jul 15 11:02:00 GMT 1997


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".



More information about the Cygwin mailing list