| 52 | bool gzip(const ByteBlockList &blocks, std::string &cdata); |
| 53 | |
| 54 | inline bool |
| 55 | gzip(const char *data, int data_len, std::string &cdata) |
| 56 | { |
| 57 | ByteBlockList blocks; |
| 58 | blocks.push_back(ByteBlock(data, data_len)); |
| 59 | return gzip(blocks, cdata); |
| 60 | } |
| 61 | |
| 62 | using BufferList = std::list<std::string>; |
| 63 |
no test coverage detected