Tagged Questions

6
votes
3answers
681 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 ...
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) ...
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
1answer
553 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
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 ...