Uses of Class
org.apache.commons.net.tftp.TFTPPacket
-
Packages that use TFTPPacket Package Description org.apache.commons.net.tftp TFTP cliemt implementation -
-
Uses of TFTPPacket in org.apache.commons.net.tftp
Subclasses of TFTPPacket in org.apache.commons.net.tftp Modifier and Type Class Description classTFTPAckPacketA final class derived from TFTPPacket definiing the TFTP Acknowledgement packet type.classTFTPDataPacketA final class derived from TFTPPacket definiing the TFTP Data packet type.classTFTPErrorPacketA final class derived from TFTPPacket definiing the TFTP Error packet type.classTFTPReadRequestPacketA class derived from TFTPRequestPacket definiing a TFTP read request packet type.classTFTPRequestPacketAn abstract class derived from TFTPPacket definiing a TFTP Request packet type.classTFTPWriteRequestPacketA class derived from TFTPRequestPacket definiing a TFTP write request packet type.Methods in org.apache.commons.net.tftp that return TFTPPacket Modifier and Type Method Description TFTPPacketTFTP. bufferedReceive()This is a special method to perform a more efficient packet receive.static TFTPPacketTFTPPacket. newTFTPPacket(java.net.DatagramPacket datagram)When you receive a datagram that you expect to be a TFTP packet, you use this factory method to create the proper TFTPPacket object encapsulating the data contained in that datagram.TFTPPacketTFTP. receive()Receives a TFTPPacket.Methods in org.apache.commons.net.tftp with parameters of type TFTPPacket Modifier and Type Method Description voidTFTP. bufferedSend(TFTPPacket packet)This is a special method to perform a more efficient packet send.voidTFTP. send(TFTPPacket packet)Sends a TFTP packet to its destination.protected voidTFTP. trace(java.lang.String direction, TFTPPacket packet)Trace facility; this implementation does nothing.
-