(name Name, c Compressor)
| 58 | } |
| 59 | |
| 60 | func registerUnsupportedCompressor(name Name, c Compressor) { |
| 61 | RegisterCompressor(name, c) |
| 62 | |
| 63 | IsDeprecated[name] = true |
| 64 | isUnsupported[c.HeaderID()] = true |
| 65 | } |
| 66 | |
| 67 | func compressionHeader(id HeaderID) []byte { |
| 68 | b := make([]byte, compressionHeaderSize) |
no test coverage detected