At first I’m new in network programming.
Assume we have server application which is listening port 5001, so when client app establish a connection with server is it possible to open a dedicated port for that client and use that port and keep 5001 only for accepting client connection requests?
At first I’m new in network programming. Assume we have server application which is
Share
You can just keep accepting new sockets with the listener socket. No need to do anything special.