Tagged Questions
2
votes
1answer
209 views
How can I stop/restart listening and accepting on a server socket in Winsock2 C++?
I made a socket (Winsock2) in Visual Studio Pro C++ to listen on a port for connections (TCP). It works perfectly, but I let it run in its own thread, and I want to be able to shut it down with the ...
0
votes
2answers
691 views
How do I make a simple DNS server listening two ports simultaneously in python
I'm trying to build a DNS server in python. It must listen two ports (8007 - client, 8008 - admin). The client only send an URL and receives the respective IP. The admin has permissions to change the ...