1
vote
2answers
26 views
Is it possible to tell if WSAStartup has been called in a process?
I've started writing an ActiveX control that makes use of sockets.
Applications that use this control may or may not also use sockets.
Is it possible for my control to tell whether WSAStartup has …
1
vote
4answers
141 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 …
1
vote
3answers
322 views
Delphi TClientSocket replacement using winsock2 and IOCP?
Is there such a thing? It needs to be asynchronous (no Indy).
1
vote
3answers
276 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 …
0
votes
1answer
24 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
272 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
105 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 …
0
votes
2answers
260 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 …
