# File lib/unicorn/ssl_configurator.rb, line 75 def ssl_compression(bool) # OpenSSL uses the SSL_OP_NO_COMPRESSION flag, Flipper follows suit # with :ssl_no_compression, but we negate it to avoid exposing double # negatives to the user. ssl_set(:ssl_no_compression, check_bool(:ssl_compression, ! bool)) end