Displaying 1 result from an estimated 1 matches for "avail_out_size".
2015 Apr 14
2
[Bug 11215] New: compression/zlib errors discard the zlib error message
...error in rsync protocol data stream (code 12) at io.c(226)
[generator=3.1.0]
The first error (inflate returned -3 (0 bytes)) was tracked in token.c:
> case r_inflating:
> rx_strm.next_out = (Bytef *)dbuf;
> rx_strm.avail_out = AVAIL_OUT_SIZE(CHUNK_SIZE);
> r = inflate(&rx_strm, Z_NO_FLUSH);
> n = AVAIL_OUT_SIZE(CHUNK_SIZE) - rx_strm.avail_out;
> if (r != Z_OK) {
> rprintf(FERROR, "inflate returned %d (%d bytes)\n&quo...