module OpenSSL::SSL::Nonblock
Public Class Methods
new(*args)
click to toggle source
Calls superclass method
# File lib/openssl_cms/ssl-internal.rb, line 79 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