Uses of Class
org.apache.commons.net.tftp.TFTPPacket

Packages that use TFTPPacket
org.apache.commons.net.tftp   
 

Uses of TFTPPacket in org.apache.commons.net.tftp
 

Subclasses of TFTPPacket in org.apache.commons.net.tftp
 class TFTPAckPacket
          A final class derived from TFTPPacket definiing the TFTP Acknowledgement packet type.
 class TFTPDataPacket
          A final class derived from TFTPPacket definiing the TFTP Data packet type.
 class TFTPErrorPacket
          A final class derived from TFTPPacket definiing the TFTP Error packet type.
 class TFTPReadRequestPacket
          A class derived from TFTPRequestPacket definiing a TFTP read request packet type.
 class TFTPRequestPacket
          An abstract class derived from TFTPPacket definiing a TFTP Request packet type.
 class TFTPWriteRequestPacket
          A class derived from TFTPRequestPacket definiing a TFTP write request packet type.
 

Methods in org.apache.commons.net.tftp that return TFTPPacket
 TFTPPacket TFTP.bufferedReceive()
          This is a special method to perform a more efficient packet receive.
static TFTPPacket TFTPPacket.newTFTPPacket(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.
 TFTPPacket TFTP.receive()
          Receives a TFTPPacket.
 

Methods in org.apache.commons.net.tftp with parameters of type TFTPPacket
 void TFTP.bufferedSend(TFTPPacket packet)
          This is a special method to perform a more efficient packet send.
 void TFTP.send(TFTPPacket packet)
          Sends a TFTP packet to its destination.
 



Copyright © 1997-2010 The Apache Software Foundation. All Rights Reserved.