module OpenSSL::SSL::SocketForwarder
Public Instance Methods
Source
# File lib/openssl/ssl.rb, line 242 def close_on_exec=(value) to_io.close_on_exec = value end
Source
# File lib/openssl/ssl.rb, line 246 def close_on_exec? to_io.close_on_exec? end
Source
# File lib/openssl/ssl.rb, line 238 def do_not_reverse_lookup=(flag) to_io.do_not_reverse_lookup = flag end
Source
# File lib/openssl/ssl.rb, line 202 def fileno to_io.fileno end
The file descriptor for the socket.
Source
# File lib/openssl/ssl.rb, line 226 def getsockopt(level, optname) to_io.getsockopt(level, optname) end
Source
# File lib/openssl/ssl.rb, line 214 def local_address to_io.local_address end
Source
# File lib/openssl/ssl.rb, line 218 def remote_address to_io.remote_address end
Source
# File lib/openssl/ssl.rb, line 222 def setsockopt(level, optname, optval) to_io.setsockopt(level, optname, optval) end
Source
# File lib/openssl/ssl.rb, line 267 def timeout=(value) to_io.timeout=(value) end
Source
# File lib/openssl/ssl.rb, line 254 def wait_readable(*args) to_io.wait_readable(*args) end
Source
# File lib/openssl/ssl.rb, line 258 def wait_writable(*args) to_io.wait_writable(*args) end