| java.lang.Object org.apache.commons.net.tftp.TFTPPacket org.apache.commons.net.tftp.TFTPRequestPacket org.apache.commons.net.tftp.TFTPReadRequestPacket
Constructor Summary | |
public | TFTPReadRequestPacket(InetAddress destination, int port, String filename, int mode) Creates a read request packet to be sent to a host at a
given port with a filename and transfer mode request.
Parameters: destination - The host to which the packet is going to be sent. Parameters: port - The port to which the packet is going to be sent. Parameters: filename - The requested filename. Parameters: mode - The requested transfer mode. | | TFTPReadRequestPacket(DatagramPacket datagram) Creates a read request packet of based on a received
datagram and assumes the datagram has already been identified as a
read request. |
TFTPReadRequestPacket | public TFTPReadRequestPacket(InetAddress destination, int port, String filename, int mode)(Code) | | Creates a read request packet to be sent to a host at a
given port with a filename and transfer mode request.
Parameters: destination - The host to which the packet is going to be sent. Parameters: port - The port to which the packet is going to be sent. Parameters: filename - The requested filename. Parameters: mode - The requested transfer mode. This should be on of the TFTPclass MODE constants (e.g., TFTP.NETASCII_MODE). |
TFTPReadRequestPacket | TFTPReadRequestPacket(DatagramPacket datagram) throws TFTPPacketException(Code) | | Creates a read request packet of based on a received
datagram and assumes the datagram has already been identified as a
read request. Assumes the datagram is at least length 4, else an
ArrayIndexOutOfBoundsException may be thrown.
Parameters: datagram - The datagram containing the received request. throws: TFTPPacketException - If the datagram isn't a valid TFTPrequest packet. |
|
|