1
0
forked from 0ad/0ad

removed winsock dependency (now uses GetFileType)

This was SVN commit r984.
This commit is contained in:
janwas 2004-08-12 17:32:16 +00:00
parent c0428d8cee
commit 6637011982

View File

@ -477,16 +477,12 @@ debug_out("aio_rw cb=%p\n", cb);
size_t size = cb->aio_nbytes;
void* buf = (void*)cb->aio_buf; // from volatile void*
// check if h is a socket
#define SOL_SOCKET 0xffff
#define SO_TYPE 0x1008
unsigned long opt = 0;
socklen_t optlen = sizeof(opt);
int sock = (int)(intptr_t)h;
bool is_sock = getsockopt(sock, SOL_SOCKET, SO_TYPE, &opt, &optlen) != -1;
// check if h is a normal file, as opposed to a socket
// (they need offset to be 0)
bool is_file = GetFileType(h) == FILE_TYPE_DISK;
// socket: no alignment calculation necessary
if(is_sock)
if(!is_file)
cb->aio_offset = 0;
else
{