You can learn a lot about the design of client-server protocols by reviewing the implementation of one. And you can develop an even greater understanding by extending or updating that implementation.
For this Assignment, you will modify an existing client-server protocol to implement the Internet's finger protocol.
To prepare:
Modify the client and the server so that they implement the Internet's finger protocol. The response from the server does not need to reflect actual user data, but you must base the response on the name provided in the clients request.
Server programs are rarely implemented as non-threaded applications, even though that is how you implemented your previous server application. Servers would not be able to provide the necessary throughput unless they used threading to allow for I/O to occur concurrently with servicing client requests.
For this Assignment, you will modify your finger server program from Phase 1 to use threads. The server should activate a new thread to process each incoming client request, thus allowing client requests to be processed concurrently.
To prepare:
Modify your finger server program to use threads. The server should activate a new thread to process each incoming client request, thus allowing client requests to be processed concurrently.
In addition, write a 5- to 7-page paper documenting the changes that you made and analyzing the impact the changes will have on the overall throughput and latency of the server.
Include in your paper responses to these questions: