module OpenSSL::SSL::SocketForwarder
Public Instance Methods
Source
# File lib/openssl/ssl.rb, line 243 def close_on_exec=(value) to_io.close_on_exec = value end
Source
# File lib/openssl/ssl.rb, line 247 def close_on_exec? to_io.close_on_exec? end
Source
# File lib/openssl/ssl.rb, line 239 def do_not_reverse_lookup=(flag) to_io.do_not_reverse_lookup = flag end
Source
# File lib/openssl/ssl.rb, line 203 def fileno to_io.fileno end
The file descriptor for the socket.
Source
# File lib/openssl/ssl.rb, line 227 def getsockopt(level, optname) to_io.getsockopt(level, optname) end
Source
# File lib/openssl/ssl.rb, line 215 def local_address to_io.local_address end
Source
# File lib/openssl/ssl.rb, line 219 def remote_address to_io.remote_address end
Source
# File lib/openssl/ssl.rb, line 223 def setsockopt(level, optname, optval) to_io.setsockopt(level, optname, optval) end
Source
# File lib/openssl/ssl.rb, line 268 def timeout=(value) to_io.timeout=(value) end
Source
# File lib/openssl/ssl.rb, line 255 def wait_readable(*args) to_io.wait_readable(*args) end
Source
# File lib/openssl/ssl.rb, line 259 def wait_writable(*args) to_io.wait_writable(*args) end