- Timestamp:
- 05/14/13 10:33:25 (9 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 0acfd1e
- Parents:
- c73f536
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libwandio/wandio.c
r91ea76c r460855d 142 142 len = wandio_peek(io, buffer, sizeof(buffer)); 143 143 /* Auto detect gzip compressed data */ 144 if (len>=2 && buffer[0] == '\037' && buffer[1] == '\213') { 144 if (len>=3 && buffer[0] == '\037' && buffer[1] == '\213' && 145 buffer[2] == 0x08) { 145 146 #if HAVE_LIBZ 146 147 DEBUG_PIPELINE("zlib");
Note: See TracChangeset
for help on using the changeset viewer.