Tagged Questions
0
votes
1answer
16 views
Creating winsock client through MFC doc/view architecture
I have a game TicTacToe which was created in MFC with document/view architecture and I have server (standart console application) witn winsockets. Where I should initialize socket in client to connect ...
0
votes
1answer
164 views
Winsock send recv buffer size
I'm writing a MFC app to implement a client/server scenario and using Win socket for that. I can send/receive a small message e.g. "hello". Also, I tried with buffer of size 1000. However, when I ...
1
vote
2answers
635 views
Overlapped WSARecv() Callback Not Being Called in MFC App
I have a COM component, implemented in C++ with ATL, that uses overlapped socket I/O. Right after the connection is made to the server, it starts an overlapped read on the socket, with code like ...