Browse Source

no compression for RouterInfo gzip

pull/1514/head
orignal 5 years ago
parent
commit
153aaa6d21
  1. 4
      libi2pd/I2NPProtocol.cpp

4
libi2pd/I2NPProtocol.cpp

@ -249,9 +249,7 @@ namespace i2p
uint8_t * sizePtr = buf; uint8_t * sizePtr = buf;
buf += 2; buf += 2;
m->len += (buf - payload); // payload size m->len += (buf - payload); // payload size
i2p::data::GzipDeflator deflator; size_t size = i2p::data::GzipNoCompression (router->GetBuffer (), router->GetBufferLen (), buf, m->maxLen -m->len);
deflator.SetCompressionLevel (Z_BEST_COMPRESSION);
size_t size = deflator.Deflate (router->GetBuffer (), router->GetBufferLen (), buf, m->maxLen -m->len);
if (size) if (size)
{ {
htobe16buf (sizePtr, size); // size htobe16buf (sizePtr, size); // size

Loading…
Cancel
Save