# File lib/puma/binder.rb, line 236
    def inherited_ssl_listener(fd, ctx)
      if IS_JRUBY
        @events.error "SSL not supported on JRuby"
        raise UnsupportedOption
      end

      require 'puma/minissl'
      s = TCPServer.for_fd(fd)
      @ios << MiniSSL::Server.new(s, ctx)
      s
    end