Sha256: 59cb5e6ce2b8b854ab772d21008e7618c15d4d83bb262bc533971b8846be7296
Contents?: true
Size: 839 Bytes
Versions: 35
Compression:
Stored size: 839 Bytes
Contents
# encoding: utf-8 module LogStash module Inputs class Http class TLS class TLSOption include Comparable attr_reader :name, :version def initialize(name, version) @name = name @version = version end def <=>(other) version <=> other.version end end TLS_PROTOCOL_OPTIONS = [ TLSOption.new("TLSv1", 1), TLSOption.new("TLSv1.1", 1.1), TLSOption.new("TLSv1.2", 1.2) ] def self.min TLS_PROTOCOL_OPTIONS.min end def self.max TLS_PROTOCOL_OPTIONS.max end def self.get_supported(versions) if versions.is_a?(Range) TLS_PROTOCOL_OPTIONS.select { |tls| versions.cover?(tls.version) } else TLS_PROTOCOL_OPTIONS.select { |tls| versions == tls.version } end end end end; end; end
Version data entries
35 entries across 35 versions & 5 rubygems