Displaying 3 results from an estimated 3 matches for "see_deflate_token".
2009 Dec 11
4
rsync hangs during transfer
I am running the following rsync command to synchronize directories
between two servers:
rsync -axvz --delete-after -e ssh /SRCDIR/ blabla at DEST:/DESTDIR
The transfer starts and after a short while it appears to hang after
some files have been transferred. The process establishes connection on
both sides so I did an strace from the remote machine (using the
rsync-debug script as described in
2020 Feb 06
0
[PATCH] Add support for zstd compression
...,10 @@
#include "rsync.h"
#include "itypes.h"
#include <zlib.h>
+#include <zstd.h>
extern int do_compression;
+extern int do_compression_zstd;
extern int protocol_version;
extern int module_id;
extern int def_compress_level;
@@ -624,6 +626,244 @@ static void see_deflate_token(char *buf, int32 len)
#endif
}
+#ifdef HAVE_LIBZSTD
+
+static ZSTD_inBuffer zstd_in_buff;
+static ZSTD_outBuffer zstd_out_buff;
+static ZSTD_CCtx *zstd_cctx;
+
+static void send_zstd_token(int f, int32 token, struct map_struct *buf,
+ OFF_T offset, int32 nb)
+{
+ static int comp_init_done...
2009 Nov 21
8
DO NOT REPLY [Bug 6916] New: Avoid bundling a modified zlib
https://bugzilla.samba.org/show_bug.cgi?id=6916
Summary: Avoid bundling a modified zlib
Product: rsync
Version: 3.1.0
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P3
Component: core
AssignedTo: wayned at samba.org
ReportedBy: matt at mattmccutchen.net