In Files

  • openssl/lib/openssl/ssl.rb

Methods

Class/Module Index [+]

Quicksearch

OpenSSL::SSL::Nonblock

Public Class Methods

new(*args) click to toggle source
 
               # File openssl/lib/openssl/ssl.rb, line 80
def initialize(*args)
  flag = File::NONBLOCK
  flag |= @io.fcntl(Fcntl::F_GETFL) if defined?(Fcntl::F_GETFL)
  @io.fcntl(Fcntl::F_SETFL, flag)
  super
end