mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-10 23:26:35 +00:00
20 lines
250 B
Go
20 lines
250 B
Go
// +build !cgo
|
|
|
|
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
|
|
}
|