Question: Write a UDP client c program that uses threads or non blocking I/O. It should be able to receive and send messages. It should measure
Write a UDP client c program that uses threads or non blocking I/O. It should be able to receive and send messages. It should measure the interval between sending a segment and receiving the segment back (if it comes back) . The program should compare the number sent with the number received to estimate the percentage of loss.

Create and bind socket Define global variables Recvfrom thread recvfronm Get target address and port I Get time now Extract time sent from message received, compute delta time, accumulate total delta times, increment num_received Create recvfrom_ thread Get timenow, put in message, do sendto Wait for any straggler replies Compute ave RTT compute message loss percentage Ifthe main thread sleeps for 2 seconds any straggler replies will have time to tum up and be seen by the recvfrom thread specifie number of essages
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
