aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tftp/doc/src/introduction.xml
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2018-03-27 16:42:55 +0200
committerPéter Dimitrov <[email protected]>2018-03-28 10:19:38 +0200
commit5e08fcceb9f40d4d8213ae4794b5366088b62550 (patch)
tree8620eaf6d5f2b035ccd780d84ec7e4506b7555f1 /lib/tftp/doc/src/introduction.xml
parent6fc2b7bf5eb331fdc1c0fb93758dad5a741da4fa (diff)
downloadotp-5e08fcceb9f40d4d8213ae4794b5366088b62550.tar.gz
otp-5e08fcceb9f40d4d8213ae4794b5366088b62550.tar.bz2
otp-5e08fcceb9f40d4d8213ae4794b5366088b62550.zip
tftp: Improve documentation
Change-Id: Ie23a40e7159fe632cf5514ac617de17c5d5b5ce2
Diffstat (limited to 'lib/tftp/doc/src/introduction.xml')
-rw-r--r--lib/tftp/doc/src/introduction.xml18
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/tftp/doc/src/introduction.xml b/lib/tftp/doc/src/introduction.xml
index 949438ae92..70761db0dc 100644
--- a/lib/tftp/doc/src/introduction.xml
+++ b/lib/tftp/doc/src/introduction.xml
@@ -34,7 +34,23 @@
<section>
<title>Purpose</title>
- <p>A <c>TFTP</c> client and server.</p>
+ <p>The Trivial File Transfer Protocol or TFTP is a very simple protocol
+ used to transfer files.</p>
+ <p>It has been implemented on top of the User Datagram protocol (UDP) so
+ it may be used to move files between machines on different networks
+ implementing UDP. It is designed to be small and easy to implement.
+ Therefore, it lacks most of the features of a regular FTP. The only
+ thing it can do is read and write files (or mail) from/to a remote server.
+ It cannot list directories, and currently has no provisions for user
+ authentication.</p>
+ <p>The <c>tftp</c> application implements the following IETF standards:</p>
+ <list type="bulleted">
+ <item>RFC 1350, The TFTP Protocol (revision 2)</item>
+ <item>RFC 2347, TFTP Option Extension</item>
+ <item>RFC 2348, TFTP Blocksize Option</item>
+ <item>RFC 2349, TFTP Timeout Interval and Transfer Size Options</item>
+ </list>
+ <p>The only feature that not is implemented is the <c>netascii</c> transfer mode.</p>
</section>
<section>