My goal is to send an int value from one computer to another. Presently, I am running the code for sending and recieving on local host alone. The sending code is executed by the "main" thread and the recieving code is executed by the thread that was forked from the main.The child thread also listens for incoming requests by "main" thread. ...