java编写tftp服务器端_JAVA实现tftp服务端(三)-- RRQ

tftpClientAgent.java

=====================================

public void RRQ() {

int ntimeout = this.m_MAX_nTimeOut;

try {

short nblock = 1;

//send the #0 block ACK to start the transfer

if (!this.SendFile(nblock, this.m_filename, this.m_mode)) {

this.SendERROR((short)0, "无法读取文件");

return ;

}

//wait for the ACK packet

while (ntimeout > 0) {

DatagramPacket dp;

dp = this.waitForData();

if (dp == null) {

//this.SendERROR((short)0, "超时了,连接被服务器断开 ...");

//System.out.println("debug: tftpClientagent.RRQ() --> timeout: " + ntimeout);

ntimeout--;

} else {

//ok, get a packet, check the ip and port

if (!((dp.getAddress().equals(this.m_ClientAddress))

&& (dp.getPort() == this.m_ClientPort))) {

//ip or port has a mistake

//this.SendERROR((short)0, "我不认识你");

//System.out.println("debug: RRQ() --> ip or port error ...");

ntimeout--;

} else {    //right ip and port

//get the opcode

DataInputStream din = new DataInputStream(new ByteArrayInputStream(dp.getData()));

&nb

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值