When dropping packets (RRQ or WRQ) for debugging, report the send

operation as successful. Reporting a failure stops the transfer
instead of using timeouts.

MFC after:		1 week
This commit is contained in:
Michael Tuexen 2020-12-06 18:43:12 +00:00
parent 2c7ada9917
commit a1c4a3eaf1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=368394

View File

@ -190,7 +190,7 @@ send_wrq(int peer, char *filename, char *mode)
filename, mode
);
DROPPACKETn("send_wrq", 1);
DROPPACKETn("send_wrq", 0);
tp = (struct tftphdr *)buf;
tp->th_opcode = htons((u_short)WRQ);
@ -238,7 +238,7 @@ send_rrq(int peer, char *filename, char *mode)
filename, mode
);
DROPPACKETn("send_rrq", 1);
DROPPACKETn("send_rrq", 0);
tp = (struct tftphdr *)buf;
tp->th_opcode = htons((u_short)RRQ);