improved testing capabilities and fixed bug that pre ended chunk sending

This commit is contained in:
Theo Tappe
2026-06-10 22:11:12 +02:00
parent 1e5eeb704f
commit f3e93d3fd9
10 changed files with 186 additions and 1715 deletions
-1
View File
@@ -11,7 +11,6 @@
FileReceive *receive_file_receive(int file_descriptor) {
char *path = (char *)receive_str(file_descriptor);
printf("%s\n", path);
DataFragment *file_data_fragment = receive_data(file_descriptor);
FileReceive *file = file_receive_create(path, file_data_fragment);
return file;