The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
392 views

Async TCP Socket server and MSMQ write memory of exe grows rapidly

Added the following code . if (iRx < 1) { m_workerSocketList[socketData.m_clientNumber - 1] =null; ...
3
votes
2answers
915 views

Multithreaded Socket code to connect to 100 different machines

This is my socket.cpp #pragma hdrstop #include "MySocketClient.h" MySocketClient::MySocketClient() throw(SocketException){ WSAData data; InitializeCriticalSection(&sect_); ...
1
vote
0answers
2k views

Stupidly simple tcp client/server

Little background, I'm trying to validate some results that I see when using NetPipe to test some connectivity between a couple of linux boxes (over various hardware). So, I concocted this simple ...