Tagged Questions

12
votes
4answers
370 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. ...
2
votes
3answers
186 views

Best way to write a ftp client program to list files on the server?

I am trying to write a client-server program in C in windows. The objective is to receive the directory listing from the server. Now I was trying to develop the client-server in such a way to utilize ...
1
vote
2answers
471 views

Handling asynchronous sockets in WinSock?

I'm using a message window and WSAAsyncSelect. How can I keep track of multiple sockets (the clients) with one message window?
1
vote
1answer
599 views

11001 returned on all calls to getaddrinfo()

Having an issue connecting to a device on my network. Whenever I call getaddrinfo() it returns 11001. I have checked this with numerous different IP's in the IP_ADDRESS string (Global Var). I've ...
1
vote
1answer
136 views

Is there any way to use getaddrinfo() and freeaddrinfo() and still be the program compatible with legacy versions of Windows?

in the Winsock2 library getaddrinfo() and freeaddrinfo() was only added in Windows XP and on. I know how to replace them in legacy systems, but a conditional use depending on the Windows version won't ...
0
votes
3answers
195 views

how to send an image in winsock2, using c

I am writing a very simple webserver in c (winsock2). I am able to return the contents of my html pages. Currently, what I am doing is writing the contents of a file into a char* buffer and sending ...
0
votes
1answer
341 views

What to use instead of getaddrinfo() and freeaddrinfo() targetting legacy Windows?

By requirement, I'm targeting old legacy Windows systems (9x branch) where getaddrinfo() and freeaddrinfo() are not available. What can I use instead of that? The code I'm using right now is ...