All Questions
4 questions
4
votes
1
answer
2k
views
Callback pattern for handling socket response
I am in the process of learning go and am coming from a PHP, JS, and Nodejs background.
I created a package that is a client which connects to a socket server and processes the data received from ...
2
votes
1
answer
2k
views
TCP client library using Winsock WSAEventSelect in C++ - Take 2
This is my second take on creating a tcp client C++ class. The class declaration is general but the implementation is Windows only at this stage and uses the Microsoft Winsock WSAEventSelect model.
...
2
votes
1
answer
1k
views
TCP client library using Winsock WSAEventSelect in C++
One way to write a client which uses a specific protocol, eg http like in this case, is to create a base class with the basic socket handling functionality with virtual functions which can be ...
3
votes
1
answer
3k
views
Basic socket library in C
I am trying to learn C and have written a very basic socket library. I would be interested in any general design and coding comments.
Note that at this stage I am not bothered about implementing the ...