Write a UDP client and UDP server program in C language on Unix/Linux, where client program interact with the Server as given below: 1 The client will send a list of numbers to the client.
2 Server program send an acknowledgement for receiving the complete list.
3 Sever program will sort the list in ascending order and send it back to respective client.
4 Client will send the acknowledgement for receiving the sorted list to the server.
Answers
Answered by
0
WHen it comes to communication there are actually two layers of protocols which allwos for the communication to take place between the hosts UDP and TCP.
Unlike in TCP, there is no way that one can form a connection through UDP.
In the similar situation we get to see that the server actually does not accept the connection at hand and just waits out for all the datagrams to come.
Similar questions