This project is deprecated and unmaintained. Proceed with caution!
Ciaran Downey - 891709818
Stratton Aguilar - 800768442
Compile the programs. A simple make
should work, assuming gcc
is available
in your $PATH
.
Open two terminal sessions. In the first, execute the receiver (recv
) like so:
./recv
Note: For this part you'll need a file to transfer. For convenience, we've included one in the project (
file.txt
) that has 3543 lines of "lorem ipsum".
In the second, execute the sender with a file of your choice like so:
./sender file.txt
# this should return 0
diff recvfile file.txt | wc -l
- We used C to complete this assignment
- We did not implement the extra credit
- The assignment was tested on an Arch Linux virtual machine. Source Vagrant box is available here.