diff --git a/README.md b/README.md index 13a8f55..af0b1ac 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,18 @@ A Python implementation of a FTP client - server. Supports both TCP and UDP protocols. Tested on Python 3.11 and Python 3.10. +All specfications regarding opcodes, return codes and payload are included in the pdf at the root of the repo `./project_coen366.pdf` + ## Dependencies -Zero. Only python standard libs were used. +Zero. Only python standard libs were used. ## Running ### Client +Always start the FTP server before starting the FTP client. + You can run `python3 src/myftp/client.py --directory ` to start the client. To run with debug info: `python3 src/myftp/client.py --debug 1 --directory `. diff --git a/project_coen366.pdf b/project_coen366.pdf new file mode 100644 index 0000000..f294c5d Binary files /dev/null and b/project_coen366.pdf differ