Tagged Questions

12
votes
4answers
371 views

Determine between socket and fd

On unix everything is a file approach of function read(), write(), close() is not supported on Win32. I want to emulate it but have no idea how to distinguish when sock is socket or fd on WinSocks2. ...
3
votes
3answers
312 views

winsock compile error

The following errors are from a file with just windows and winsock2 included. C:\Users\ioil\Desktop\dm\bin>dmc sockit.c typedef struct fd_set { ^ ...
1
vote
1answer
145 views

WSAPoll on named fd :: need suggestions how to rewrite it

I've some POSIXC code that I'm porting to windows (WinSocks 2.2) and I'm having problems with MS implementation of (not only) poll(). I have some experience with POSIX sockets, but I'm quite new to ...
0
votes
1answer
62 views

WinSock's send() always returning 0 bytes sent

I've been experiencing a problem with the Winsock2's function send(). No matter what data I provide it, the send() function always returns 0; eg 0 bytes sent, and no errors. I've google searched for a ...
0
votes
6answers
356 views

Receiving all data sent with C sockets

If i write a server, how can I implement the receive function to get all the data sent by a specific client if I don't know how that client sends the data ? I am using a TCP/IP protocol. Thanks in ...