MCPcopy Create free account
hub / github.com/apache/trafficserver / gzip

Function gzip

plugins/esi/common/gzip.h:54–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52bool gzip(const ByteBlockList &blocks, std::string &cdata);
53
54inline bool
55gzip(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
62using BufferList = std::list<std::string>;
63

Callers 3

transformDataFunction · 0.85
prepareResponseFunction · 0.85
gzip_test.ccFile · 0.85

Calls 2

ByteBlockClass · 0.85
push_backMethod · 0.45

Tested by

no test coverage detected