Sha256: 76b1ee6e4958c1eab1fd71c6dfc7c22672d13f9a0e18d98a8cfd124d25e44808

Contents?: true

Size: 654 Bytes

Versions: 35

Compression:

Stored size: 654 Bytes

Contents

# frozen_string_literal: true

module Puma
  module MiniSSL
    class Socket
      def read_nonblock(size, *_)
        wait_states = %i[wait_readable wait_writable]

        loop do
          output = engine_read_all
          return output if output

          data = @socket.read_nonblock(size, exception: false)
          raise IO::EAGAINWaitReadable if wait_states.include? data
          return nil if data.nil?

          @engine.inject(data)
          output = engine_read_all

          return output if output

          while (neg_data = @engine.extract)
            @socket.write neg_data
          end
        end
      end
    end
  end
end

Version data entries

35 entries across 25 versions & 4 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/capybara-3.40.0/lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.40.0 lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.39.2 lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.39.1 lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.39.0 lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/capybara-3.36.0/lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.38.0 lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/capybara-3.37.1/lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.2.2 vendor/bundle/ruby/3.1.0/gems/capybara-3.37.1/lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.37.1 lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.37.0 lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.2.1 vendor/bundle/ruby/3.1.0/gems/capybara-3.36.0/lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.2.0 vendor/bundle/ruby/3.0.0/gems/capybara-3.36.0/lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.2.0 vendor/bundle/ruby/2.7.0/gems/capybara-3.35.3/lib/capybara/registrations/patches/puma_ssl.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/capybara-3.36.0/lib/capybara/registrations/patches/puma_ssl.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/capybara-3.36.0/lib/capybara/registrations/patches/puma_ssl.rb
capybara-3.36.0 lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.1.7 vendor/bundle/ruby/2.7.0/gems/capybara-3.35.3/lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.1.7 vendor/bundle/ruby/3.0.0/gems/capybara-3.35.3/lib/capybara/registrations/patches/puma_ssl.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/tdiary-5.1.5/vendor/bundle/ruby/2.7.0/gems/capybara-3.35.3/lib/capybara/registrations/patches/puma_ssl.rb