Lines Matching refs:accept_encoding
1756 int accept_encoding = 0; in mod_deflate_choose_encoding() local
1772 accept_encoding |= HTTP_ACCEPT_ENCODING_BR; in mod_deflate_choose_encoding()
1778 accept_encoding |= HTTP_ACCEPT_ENCODING_GZIP; in mod_deflate_choose_encoding()
1785 accept_encoding |= HTTP_ACCEPT_ENCODING_ZSTD; in mod_deflate_choose_encoding()
1791 accept_encoding |= HTTP_ACCEPT_ENCODING_BZIP2; in mod_deflate_choose_encoding()
1797 accept_encoding |= HTTP_ACCEPT_ENCODING_X_GZIP; in mod_deflate_choose_encoding()
1803 accept_encoding |= HTTP_ACCEPT_ENCODING_DEFLATE; in mod_deflate_choose_encoding()
1807 accept_encoding |= HTTP_ACCEPT_ENCODING_X_BZIP2; in mod_deflate_choose_encoding()
1813 accept_encoding |= HTTP_ACCEPT_ENCODING_IDENTITY; in mod_deflate_choose_encoding()
1815 accept_encoding |= HTTP_ACCEPT_ENCODING_COMPRESS; in mod_deflate_choose_encoding()
1831 while (*x && !(*x & accept_encoding)) ++x; in mod_deflate_choose_encoding()
1832 accept_encoding &= *x; in mod_deflate_choose_encoding()
1834 if (accept_encoding & HTTP_ACCEPT_ENCODING_ZSTD) { in mod_deflate_choose_encoding()
1840 if (accept_encoding & HTTP_ACCEPT_ENCODING_BR) { in mod_deflate_choose_encoding()
1846 if (accept_encoding & HTTP_ACCEPT_ENCODING_BZIP2) { in mod_deflate_choose_encoding()
1849 } else if (accept_encoding & HTTP_ACCEPT_ENCODING_X_BZIP2) { in mod_deflate_choose_encoding()
1855 if (accept_encoding & HTTP_ACCEPT_ENCODING_GZIP) { in mod_deflate_choose_encoding()
1858 } else if (accept_encoding & HTTP_ACCEPT_ENCODING_X_GZIP) { in mod_deflate_choose_encoding()
1861 } else if (accept_encoding & HTTP_ACCEPT_ENCODING_DEFLATE) { in mod_deflate_choose_encoding()
1866 if (0 == accept_encoding) { in mod_deflate_choose_encoding()