I have implemented a HTTP/2.0 server which supports compression using Netty 4.1.5.Final.CompressorHttp2ConnectionEncoder <https://netty.io/4.1/api/io/netty/handler/codec/http2/CompressorHttp2ConnectionEncoder.html> class which is used for HTTP data frame compression. It uses content-encoding Transport header field to identify the compression algorithm.
Suppose when I am acting as a transparent proxy, when I obtain an already compressed data frames from backend HTTP/2.0 server (Which has the content-encoding header), does the above mentioned class re-compress the already compressed content? If so what is the proper way to use CompressorHttp2ConnectionEncoder <https://netty.io/4.1/api/io/netty/handler/codec/http2/CompressorHttp2ConnectionEncoder.html> class so that it would ignore already compressed content. -- You received this message because you are subscribed to the Google Groups "Netty discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/netty/2f255383-739b-4027-bc0a-940f5ed55bbd%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
