The wsaasyncselect tag has no wiki summary.
1
vote
1answer
186 views
WM_SOCKET … FD_READ is not responding
I’m using WM_SOCKET. Server and client are running fine. But if I close the client and reopen it FD_READ is not responding only FD_CLOSE and FD_ACCEPT work fine. Please someone help me…
Server Code:
...
0
votes
1answer
418 views
Winsock WSAAsyncSelect sending without an infinite buffer
This is more of a design question than a specific code question, I'm sure I am missing the obvious, I just need another set of eyes.
I am writing a multi-client server based on WSAAsyncSelect, each ...
0
votes
1answer
823 views
How to properly use WSAAsyncSelect?
I've asked here a ton of questions about WSAAsyncSelect and NET.Few months ago I even spent 500 rep on a bounty and answered it myself(I made a wrapper).In the end I got used to the winsock in the ...
0
votes
1answer
477 views
How to use WSAAsyncSelect from WinAPI in C#?
I'm tired of the .NET BeginRead,EndRead stuff.I'd love to use WSAAsyncSelect the way I used to in Delphi/C++
//Async CallBack handler Declaration
procedure MessageHandler(var Msg:Tmessage);Message ...