mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-10 17:36:35 +00:00

h2mux is already deprecated and will be eventually removed, in the meantime, the compression tests cause flaky failures. Removing them and the brotli code slims down our binaries and dependencies on CGO.
18 lines
234 B
Go
18 lines
234 B
Go
package h2mux
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func CompressionIsSupported() bool {
|
|
return false
|
|
}
|
|
|
|
func newDecompressor(src io.Reader) decompressor {
|
|
return nil
|
|
}
|
|
|
|
func newCompressor(dst io.Writer, quality, lgwin int) compressor {
|
|
return nil
|
|
}
|