EECS 3214 : Programming Assignment 1

Submit this assignment using the submit command (see the instructions below). The deadline is February 16, 10 am.

Getting familiar with client-server programming

Objective:

The objective of this lab is to get familiar with TCP/IP, and then build the skeleton of a very simple distributed messaging system. The system should allow you to log on to a server and exchange messages with other people logged on to the same server.

The application you will write for this assignment implements a directory server. The second part (next assignment) will implement interaction between peers. Note that the first part is a pure client server architecture and the second is a peer-to-peer application.

For this assignment, you should write a client/server application that does the following.

Compiling the server and client programs (C language only)
  1. Compile the programs with gcc instead of cc.
  2. For the server program, you need the -lsocket flag
  3. For the client program, you need the flags -lsocket -lnsl
Instructions for submitting assignment 1 Submit the programs using the following command:
  1. The programs you submit should work and be documented.
  2. Your assignment should include a separate (typed) document containing the results (You can hand this in the class). This document should contains details of
    1. the overall program design, a textual description of "how it works", and design decisions made.
    2. possible improvements and extensions to your program that you would do if you had more time.
    3. situations (if any) when your program may not work correctly.
    4. how the grader can compile and run your program.
Demonstration The TA may ask you to demonstrate to her that your program works on the departmental Linux machines. You will run the server, and 4 clients and show that the program implements the specifications described above.

Grading

Program works correctly : 40%
quality of code and in-line documentation : 25%
report : 35%

NOTE: Late submissions get no credit.

Copying, teamwork

Modifying the skeleton programs for client server programs is permitted. Otherwise, copying of programs (also written homeworks and exams) or teamwork on an assignment (written or programming) is not permitted.  No form of copying is tolerated in this (or any) course, in accordance with departmental policy.