CSE325 – Solved

29.99 $

Category: Tags: , ,

Description

5/5 - (2 votes)

Assignment Overview

This assignment focuses on network programming with sockets, and is the first milestone in a larger project. You will design and implement the program described below.

Assignment Deliverables

The deliverables for this assignment are the following files:

proj11.client.makefile – the makefile which produces proj11.client proj11.client.cpp – the source code file for your client

Assignment Specifications

The following executable file is available on the CSE system:

/user/cse325/Projects/project11.server

When executed, that server process will interact with a client process to provide a rudimentary mechanism for copying a file from one system to another.

1. The server process will create a socket, bind it to a port, and listen for a connection request on that port. It will display the host name and port number on the standard output stream. For example:

arctic.cse.msu.edu 54321

The server process will accept a connection request from the client process and wait for it to send a file name.

If the server process is able to open the specified file name as an input file, it will send the four-character message OPEN to the client process and wait for the client process to respond. Otherwise, the server process will send the six-character message FAILED to the client process and terminate execution.

If the client process responds with the four-character message SEND, the server process will send the contents of the input file to the client process and then terminate execution.

If the command line argument “-debug” is selected, the server process will display debugging information.

2. The client process will accept three command-line arguments, in the following order: the host name, the port number being used by the server process, and the name of the desired file. For example:

proj11.client arctic.cse.msu.edu 54321 /user/cse325/Examples/example01

The client process will connect to the server process, send it the name of the desired file, and wait for a response.

If the server process responds with the four-character message OPEN, the client process will respond with the fourcharacter message SEND and wait for the server process to send it the contents of the desired file. The client process will display the contents of the desired file on the standard output stream and then terminate execution.

The client process will perform appropriate error-handling.
Assignment Notes

1. As stated above, your source code file must be named “proj11.client.cpp” and you must use “g++” to translate your source code file in the CSE Linux environment.

2. Your client process is required to use the system calls “send()” and “recv()” to exchange messages with the server process.

3. Your client process is required to use the system call “write()” to display the contents of the desired file on the standard output stream (file descriptor 1).

4. If your client process produces any additional output (beyond the contents of the desired file), it must send that additional output to the standard error stream (file descriptor 2 or “cerr”).

5. Your client process must use a buffer of size 64 bytes to receive the contents of the desired file. For most files, it will require multiple calls to “recv()” and “write()” to process the entire file.

6. Information about some of the system calls you will use is available in section 2 of the “man” utility:

man 2 socket man 2 connect man 2 send man 2 recv man 2 write

7. Be sure to test your solution in several different ways. For example, execute your server process and your client process on the same CSE server, then execute the two processes on two different CSE servers.

You should open two terminal windows: one to execute the server process and one to execute the client process.

  • Project-11-k0dwnd.zip