diff --git a/README.md b/README.md index a7b5f8e..978c31c 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,5 @@ This folder contains the following documents: - [logger.md](docs/logger.md): Logging and Debugging Messages - [mkllfs.md](docs/mkllfs.md): Make Linked List File System - [style_guide.md](docs/style_guide.md): Style Guide -- [tftp.md](docs/tftp.md): Trivial File Transfer Protocol \ No newline at end of file +- [tftp.md](docs/tftp.md): Trivial File Transfer Protocol +- [udp_broadcast.md](docs/udp_broadcast.md): UDP Broadcast \ No newline at end of file diff --git a/docs/tftp.md b/docs/tftp.md index db3a6c4..c8d67be 100644 --- a/docs/tftp.md +++ b/docs/tftp.md @@ -1,5 +1,14 @@ # TFTP This is the documentation of the TFTP task + +## Table of contents +- [Table of contents](#table-of-contents) +- [Initialization](#initialization) +- [Deinitialization](#deinitialization) +- [Usage](#usage) +- [Receive a file](#receive-a-file) +- [Send a file](#send-a-file) + ## Initialization The TFTP task is initialized in the main function. ```c