org.apache.commons.net.tftp |
|
Java Source File Name | Type | Comment |
TFTP.java | Class | The TFTP class exposes a set of methods to allow you to deal with the TFTP
protocol directly, in case you want to write your own TFTP client or
server. |
TFTPAckPacket.java | Class | A final class derived from TFTPPacket definiing the TFTP Acknowledgement
packet type.
Details regarding the TFTP protocol and the format of TFTP packets can
be found in RFC 783. |
TFTPClient.java | Class | The TFTPClient class encapsulates all the aspects of the TFTP protocol
necessary to receive and send files through TFTP. |
TFTPDataPacket.java | Class | A final class derived from TFTPPacket definiing the TFTP Data
packet type.
Details regarding the TFTP protocol and the format of TFTP packets can
be found in RFC 783. |
TFTPErrorPacket.java | Class | A final class derived from TFTPPacket definiing the TFTP Error
packet type.
Details regarding the TFTP protocol and the format of TFTP packets can
be found in RFC 783. |
TFTPPacket.java | Class | TFTPPacket is an abstract class encapsulating the functionality common
to the 5 types of TFTP packets. |
TFTPPacketException.java | Class | A class used to signify the occurrence of an error in the creation of
a TFTP packet. |
TFTPReadRequestPacket.java | Class | A class derived from TFTPRequestPacket definiing a TFTP read request
packet type.
Details regarding the TFTP protocol and the format of TFTP packets can
be found in RFC 783. |
TFTPRequestPacket.java | Class | An abstract class derived from TFTPPacket definiing a TFTP Request
packet type. |
TFTPWriteRequestPacket.java | Class | A class derived from TFTPRequestPacket definiing a TFTP write request
packet type.
Details regarding the TFTP protocol and the format of TFTP packets can
be found in RFC 783. |