You are required to submit code, which compiles and runs on the FC 010 machines. Both programs should be written in C or C++.
Grading: This assignment will count towards your participation grade.
Note: You will be able to find copies of this program on many places on the web, as well as in some form in the textbook. We strongly recommend that you implement this program without consulting other references, as you will gain a much better understanding of these system calls, which you will heavily use in Assignment 1.
We want you to write a server capable of receiving text messages from clients over TCP sockets. The server should print these text messages on the standard output. From the server perspective, the message corresponds to the data received from a particular client during a communication session with that client. The server should be listening for text messages on a port known to the clients. It should handle the client connections sequentially and accept connections from multiple clients. After servicing one client to completion, it should proceed to the next. If multiple clients try to simultaneously send text messages to the server, the server should handle them one at a time (in any order). Serving one client at a time is enough.
We also want you to write a client. The client should read from a file -- either one named "filein.txt" that can be hardcoded in your source code, or from stdin -- then transmit the message and exit.
You can assume that the client is run as
$ ./client server-IP-address port-numberwhere "server-IP-address" is the IP address of the server, and "port-number" is the TCP port the server listens on. The server is run as "server port-number". If the server cannot bind on a port, print a message to standard error.
The FC Lab machines firewalls low ports, so you should only use a port greater than 10000 and less than 60000 while testing.
You should use fread and fwrite calls for reading/writing data to and from sockets and files. Do not use special "string" versions of these calls (e.g., fgets and fputs as they are not designed for binary data).
Make sure you handle the following correctly:
However, if there is some data available to be read or some can be written, the call will return the number of bytes read or written respectively. NOTE: This returned value can be less than specified in the length argument to the call or indicate an error. You must handle this.
Submit here.
Last updated: Tue May 13 09:10:26 -0400 2014