Displaying 3 results from an estimated 3 matches for "recv_deflated_token".
2008 Jun 04
0
3.0.3pre2 compile warnings under cygwin
...unction `setmode'
io.c: In function `read_msg_fd':
io.c:413: warning: int format, long unsigned int arg (arg 4)
token.c: In function `send_deflated_token':
token.c:377: warning: int format, int32_t arg (arg 3)
token.c:418: warning: int format, int32_t arg (arg 3)
token.c: In function `recv_deflated_token':
token.c:496: warning: int format, int32_t arg (arg 4)
token.c:546: warning: int format, int32_t arg (arg 4)
acls.c: In function `pack_smb_acl':
acls.c:423: warning: passing arg 4 of `sys_acl_set_info' makes integer from pointer without a cast
acls.c: In function `recv_acl_access'...
2002 Apr 20
1
rsync breaks on FreeBSD without -O2?(fwd from grog@FreeBSD.org) PR 36998
...size-"while" instead */
(gdb) bt
#0 0x8061823 in inflate_codes (s=0x807b040, z=0x80777c0, r=0) at zlib/infcodes.c:200
#1 0x806104c in inflate_blocks (s=0x807b040, z=0x80777c0, r=-5) at zlib/infblock.c:340
#2 0x806243b in inflate (z=0x80777c0, f=0) at zlib/inflate.c:221
#3 0x805852f in recv_deflated_token (f=0, data=0xbfbfe8dc) at token.c:412
#4 0x805872e in recv_token (f=0, data=0xbfbfe8dc) at token.c:506
#5 0x804bd38 in receive_data (f_in=0, buf=0x0, fd=1, fname=0x8074a80 "master-bin.095", total_size=203874289) at receiver.c:224
#6 0x804c254 in recv_files (f_in=0, flist=0x807a090, loc...
2020 Feb 06
0
[PATCH] Add support for zstd compression
...deflated_token(f, token, buf, offset, n, toklen);
@@ -648,7 +890,9 @@ int32 recv_token(int f, char **data)
{
int tok;
- if (!do_compression) {
+ if (do_compression_zstd) {
+ tok = recv_zstd_token(f, data);
+ } else if (!do_compression) {
tok = simple_recv_token(f,data);
} else {
tok = recv_deflated_token(f, data);
--
2.25.0