# File lib/gelf/transport/tcp_tls.rb, line 61 def ssl_context @ssl_context ||= OpenSSL::SSL::SSLContext.new.tap do |ctx| ctx.cert_store = ssl_cert_store ctx.ssl_version = tls_version ctx.verify_mode = verify_mode set_certificate_and_key(ctx) restrict_ciphers(ctx) unless @tls_options['all_ciphers'] end end