Flowdock
method

ssl_timeout=

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: Net::HTTP
ssl_timeout=(sec) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/https.rb, line 158
    def ssl_timeout=(sec)
      raise ArgumentError, 'Net::HTTP#ssl_timeout= called but use_ssl=false' \
          unless use_ssl?
      @ssl_context ||= OpenSSL::SSL::SSLContext.new
      @ssl_context.timeout = sec
    end
Register or log in to add new notes.