Don't stop download if tftp server sends packets smaller than the negotiated mtu
This commit is contained in:
parent
99aacedad9
commit
0c81b639fb
@ -61,6 +61,8 @@ int tftp_open(struct tftp_file_handle* handle, uint32_t server_ip, uint16_t serv
|
|||||||
size_t to_transfer = handle->file_size;
|
size_t to_transfer = handle->file_size;
|
||||||
size_t progress = 0;
|
size_t progress = 0;
|
||||||
|
|
||||||
|
bool slow = false;
|
||||||
|
|
||||||
while (to_transfer > 0) {
|
while (to_transfer > 0) {
|
||||||
volatile struct pxenv_read read = {
|
volatile struct pxenv_read read = {
|
||||||
.boff = ((uint16_t)rm_off(buf)),
|
.boff = ((uint16_t)rm_off(buf)),
|
||||||
@ -72,8 +74,9 @@ int tftp_open(struct tftp_file_handle* handle, uint32_t server_ip, uint16_t serv
|
|||||||
}
|
}
|
||||||
memcpy(handle->data + progress, buf, read.bsize);
|
memcpy(handle->data + progress, buf, read.bsize);
|
||||||
|
|
||||||
if (read.bsize < mtu) {
|
if (read.bsize < mtu && !slow) {
|
||||||
break;
|
slow = true;
|
||||||
|
print("Server is sending the file in smaller packets (it sent %d bytes), download might take longer.\n", read.bsize);
|
||||||
}
|
}
|
||||||
to_transfer -= read.bsize;
|
to_transfer -= read.bsize;
|
||||||
progress += read.bsize;
|
progress += read.bsize;
|
||||||
|
Loading…
Reference in New Issue
Block a user