Tagged Questions

1
vote
4answers
114 views

Winsock2: How to allow ONLY one client connection at a time by using listen’s backlog in VC++

Hi Everyone, I want to allow only one connection at a time from my TCP server. Can you please tell, how to use listen without backlog length of zero. I m using the code(given below), but when i …
0
votes
1answer
14 views

Windows RSVP QoS service is stopped when no QoS-socket active. Can that be changed?

We have a program that uses QoS-sockets, our softphone application uses QoS for the RTP. That application is normally left running, sometimes however it is restarted. (Stop, wait 300ms, start.) We …
0
votes
3answers
223 views

Calling WinSock functions using LoadLibrary and GetProcAddress

Basically I have a header file like this: #if WIN32 typedef DWORD (WSAAPI *SocketStartup) (WORD wVersionRequested, LPWSADATA lpWSAData); typedef SOCKET (WINAPI *MakeSocket)(IN int af, IN int type, …
0
votes
0answers
91 views

How can I list for each Windows TCP socket the status of SO_LINGER?

I want to verify that a group of sockets do (or do not) have the SO_LINGER option set on them, but the end I care about isn't my program. Basically, my program is getting an unexpected network reset …
1
vote
3answers
299 views

Delphi TClientSocket replacement using winsock2 and IOCP?

Is there such a thing? It needs to be asynchronous (no Indy).
0
votes
2answers
243 views

C++ - Simple server which sends simple HTML to clients

Now, I'm just fooling around with this and I'm not sure as to why this isn't working. #include <winsock2.h> #include <ws2tcpip.h> #include <iostream> #include <cassert> const …
1
vote
3answers
260 views

linux to windows C++ byte array

Hello, 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 …