search for: storage_decompress

Displaying 1 result from an estimated 1 matches for "storage_decompress".

2003 Jan 15
1
Storage compression patch for Rsync (unfinished)
...) flist.c: extension ".rsc" is added to every file/directory (in -Z mode) rsync.c: finish_transfer() now does the compression when in -Z mode before stating the file. That means the compressed file has the same stat as the uncompressed file. receiver.c: I added two new functions: - storage_decompress: this will decompress an .rsc file to a tmp file, e.g. for calculating sums (note: a delete function is missing!) - storage_decompress_update_stats: this will update a given stat structure with the decompressed filesize of the rsc file. Currently transfering new files and compressing works. Bu...