mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 14:23:30 +01:00
Merge remote-tracking branch 'public/bug11787'
This commit is contained in:
commit
fb762f6db0
5
changes/bug11787
Normal file
5
changes/bug11787
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes (directory bandwidth performance):
|
||||||
|
- Don't flush the zlib buffer aggressively when compressing
|
||||||
|
directory information for clients. This should save about 7% of
|
||||||
|
the bandwidth currently used for compressed descriptors and
|
||||||
|
microdescriptors. Fixes bug 11787; bugfix on 0.1.1.23.
|
@ -472,7 +472,7 @@ tor_zlib_process(tor_zlib_state_t *state,
|
|||||||
state->stream.avail_out = (unsigned int)*out_len;
|
state->stream.avail_out = (unsigned int)*out_len;
|
||||||
|
|
||||||
if (state->compress) {
|
if (state->compress) {
|
||||||
err = deflate(&state->stream, finish ? Z_FINISH : Z_SYNC_FLUSH);
|
err = deflate(&state->stream, finish ? Z_FINISH : Z_NO_FLUSH);
|
||||||
} else {
|
} else {
|
||||||
err = inflate(&state->stream, finish ? Z_FINISH : Z_SYNC_FLUSH);
|
err = inflate(&state->stream, finish ? Z_FINISH : Z_SYNC_FLUSH);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user