en UNIX todo es un archivo enfoque de la función read()
, write()
, close()
no es compatible con Win32.Determinar entre el encaje y FD
quiero emular, pero no tienen idea de cómo distinguir cuando es sock
toma o fd en WinSocks2.
//returns 1 if `sock` is network socket,
// 0 if `sock` is file desriptor (including stdio, stderr, stdout), ...
// -1 in none of above
int is_net_socket(int sock)
{
// ...?
}
Esto debería funcionar como en:
int mysock = socket(PF_INET, SOCK_STREAM, 0);
int myfd = _open("my_file.txt", _O_RDONLY);
printf("1: %d 2: %d 3: %d 4:%d\n",
is_net_socket(mysock), //1
is_net_socket(myfd), //0
is_net_socket(stdin), //0
is_net_socket(stderr)); //0
// should print "1: 1 2: 0 3: 0 4:0"
Cómo implementar is_net_socket
con el fin de utilizarla como en:
int my_close(int sock)
{
#if ON_WINDOWS
switch(is_net_socket(sock)) {
case 1: return closesocket(sock);
case 0: return _close(sock);
default: //handle error...
}
#else
return close(sock);
#endif
}
Cualquier persona _fstat utilizado()? – DinGODzilla