Writing your own Web server that can handle multiple connections
If you are familiar with socket programming, you would be aware that send and recv are usually blocking calls. This means that the code execution will be blocked until they are successfully resolved. This prevents us from writing TCP servers that can respond to multiple clients. However, there are different Read more…