Mail Archives: cygwin/1997/07/15/12:44:26
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 AT cygnus DOT com" with one line of text: "help".
- Raw text -