| 180 | } |
| 181 | |
| 182 | bool ZlibDecompress(const butil::IOBuf& data, |
| 183 | google::protobuf::Message* msg) { |
| 184 | return Decompress(data, msg, google::protobuf::io::GzipInputStream::ZLIB); |
| 185 | } |
| 186 | |
| 187 | bool GzipDecompress(const butil::IOBuf& data, butil::IOBuf* msg) { |
| 188 | return GzipDecompressBase( |
nothing calls this directly
no test coverage detected