Index: buckets/ssl_buckets.c =================================================================== --- buckets/ssl_buckets.c (revision 1654) +++ buckets/ssl_buckets.c (working copy) @@ -1198,6 +1198,10 @@ static serf_ssl_context_t *ssl_init_context(void) validate_server_certificate); SSL_CTX_set_options(ssl_ctx->ctx, SSL_OP_ALL); +#ifdef SSL_OP_NO_COMPRESSION + SSL_CTX_set_options(ssl_ctx->ctx, SSL_OP_NO_COMPRESSION); +#endif + ssl_ctx->ssl = SSL_new(ssl_ctx->ctx); ssl_ctx->bio = BIO_new(&bio_bucket_method); ssl_ctx->bio->ptr = ssl_ctx;