update: better debug logs for sendfile

This commit is contained in:
ngn
2024-08-09 00:35:38 +03:00
parent cdb997215b
commit 518dd4fb8d
2 changed files with 5 additions and 3 deletions

View File

@ -60,8 +60,10 @@ bool lm_mptp_sendfile(int sock, char *path, lm_mptp_transfer_callback_t callback
while ((read = fread(packet.data, 1, MPTP_DATA_MAX, file)) > 0) {
packet.header.data_size = read;
if(!lm_mptp_server_send(sock, &packet))
if(!lm_mptp_server_send(sock, &packet)){
pdebug(__func__, "failed to send packet for %s (left at %lu/%lu): %s", path, current, total, lm_strerror());
goto end;
}
current += read;
@ -79,6 +81,7 @@ bool lm_mptp_sendfile(int sock, char *path, lm_mptp_transfer_callback_t callback
goto end;
}
pdebug(__func__, "completed sending %s, sending last packet", path);
lm_mptp_init(&packet, false, MPTP_S2C_COOL, true);
ret = true;
@ -86,7 +89,6 @@ end:
if(NULL != file)
fclose(file);
pdebug(__func__, "completed sending %s, sending last packet", path);
lm_mptp_server_send(sock, &packet);
return ret;
}