Examples of TFTPReadRequestPacket


Examples of org.apache.commons.net.tftp.TFTPReadRequestPacket

                    }
                }
                break;
            case TFTPPacket.READ_REQUEST:
                if (clientAddress == null) {
                    TFTPReadRequestPacket rreqPacket = (TFTPReadRequestPacket) packet;
                    try {
                        File file = new File(".", rreqPacket.getFilename());
                        log.info("Request to read file " + rreqPacket.getFilename() + " (" +
                                file.getAbsolutePath() + ") received from " + packet.getAddress() +
                            ':' + packet.getPort());
                        fileIn = new FileInputStream(file);
                        blockNumber = 1;
                        byte[] data = new byte[TFTPDataPacket.MAX_DATA_LENGTH];
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.