Difference between revisions of "TFTP"

From Embedded Xinu
Jump to navigation Jump to search
(Created page)
 
(Adjust external link)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
'''TFTP''' ('''Trivial File Transfer Protocol''') support has been added to Embedded Xinu.  Currently, only client support--- that is, downloading files with TFTP Get requests--- is supported.  The code is located in {{SourceFile|network/tftp/}}.  The external interface includes the header {{SourceFile|include/tftp.h}} declaring <code>tftpGet()</code> and <code>tftpGetIntoBuffer()</code>.  See the API documentation for more information.
+
'''TFTP''' ('''Trivial File Transfer Protocol''') support has been added to [[Embedded Xinu]].  Currently, only client support--- that is, downloading files with TFTP Get requests--- is supported.  The code is located in {{SourceFile|network/tftp/}}.  The API includes the header {{SourceFile|include/tftp.h}} declaring <code>tftpGet()</code> and <code>tftpGetIntoBuffer()</code>.  See the API documentation for more information.
 +
 
 +
Note that this page refers specifically to the TFTP client support built into [[Embedded Xinu]], which is completely separate from the TFTP support included in [[CFE]], which is third-party firmware.
  
 
== External Links ==
 
== External Links ==
  
* http://tools.ietf.org/html/rfc1350
+
* [http://tools.ietf.org/html/rfc1350 RFC 1350: The TFTP Protocol (Revision 2)]

Latest revision as of 02:38, 12 September 2013

TFTP (Trivial File Transfer Protocol) support has been added to Embedded Xinu. Currently, only client support--- that is, downloading files with TFTP Get requests--- is supported. The code is located in network/tftp/. The API includes the header include/tftp.h declaring tftpGet() and tftpGetIntoBuffer(). See the API documentation for more information.

Note that this page refers specifically to the TFTP client support built into Embedded Xinu, which is completely separate from the TFTP support included in CFE, which is third-party firmware.

External Links