12
votes
4answers
359 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. ...
6
votes
3answers
679 views

Increase the TCP receive window for a specific socket

How to increase the TCP receive window for a specific socket? - I know how to do so for all the sockets by setting the registry key TcpWindowSize, but how do do that for a specific one? According to ...
4
votes
4answers
180 views

TCP Hole Punching

I'm trying to implement TCP hole punching with windows socket using mingw toolchain. I think the process is right but the hole doesn't seems to take. I used this as reference. A and B connect to the ...
3
votes
2answers
286 views

Socket recv call freezes thread for approx. 5 seconds

I've a client server architecture implemented in C++ with blocking sockets under Windows 7. Everything is running well up to a certain level of load. If there are a couple of clients (e.g. > 4) ...
2
votes
3answers
169 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 ...
2
votes
3answers
2k views

Winsock tcp/ip Socket listening but connection refused, race condition?

This involves two automated unit tests which each start up a tcp/ip server that creates a non-blocking socket then bind()s and listen()s in a loop on select() for a client that connects and downloads ...
1
vote
3answers
141 views

Send other data types in winsock2

The send function in winsock2 accepts only char pointers. How do I send integers or objects through it too?
1
vote
2answers
436 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
3answers
495 views

Redirect IO of process to Windows socket

I am new to winsock, I tried to write a server socket that accepts new connection, then it calls an external executable file. How can we redirect the stdin and stdout of the external executable file ...
1
vote
1answer
552 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
3answers
366 views

Why does the following code make my computer beep?

I'm having a really hard time understanding why is this piece of code making my computer beep. I've isolated this section of code to be the one producing the occasional beep, but I don't see what's ...
1
vote
1answer
135 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 ...
1
vote
3answers
835 views

linux to windows C++ byte array

I have to replicate the following Java functionality in C++ to get data from Linux to Windows. Is Winsock2 the best way to go?. Also, any reference code to suggest? TIA, B import ...
0
votes
1answer
23 views
+50

socket investigation in crash dump

We have a crash dump (user mode) from the customer which is experiencing networking issues with our application. In crash dump I can see all handles that are open for networking. Question: How can I ...
0
votes
1answer
57 views

Winsock2's select() on fd 0 (stdin) fails

Using Winsock2 the code sequence below returns -1 (failure) for select(). #include <Winsock2.h> #include <stdio.h> ... int rc; int fdstdin = fileno(stdin); /* returns 0 as expected */ ...
0
votes
3answers
186 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
111 views

How to do packet mangling with winsock2 in windows?

I'm following examples here, but none of them provides an example on how to modify packets(previously I used winpcap only to found that it can ONLY read packets!). Can someone give me some clue even ...
0
votes
1answer
334 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 ...