module OpenSSL::SSL::SocketForwarder

Public Instance Methods

addr ()
# File ext/openssl/lib/openssl/ssl.rb, line 247
def addr
  to_io.addr
end
close_on_exec= (value)
# File ext/openssl/lib/openssl/ssl.rb, line 283
def close_on_exec=(value)
  to_io.close_on_exec = value
end
close_on_exec? ()
# File ext/openssl/lib/openssl/ssl.rb, line 287
def close_on_exec?
  to_io.close_on_exec?
end
closed? ()
# File ext/openssl/lib/openssl/ssl.rb, line 275
def closed?
  to_io.closed?
end
do_not_reverse_lookup= (flag)
# File ext/openssl/lib/openssl/ssl.rb, line 279
def do_not_reverse_lookup=(flag)
  to_io.do_not_reverse_lookup = flag
end
fcntl (*args)
# File ext/openssl/lib/openssl/ssl.rb, line 271
def fcntl(*args)
  to_io.fcntl(*args)
end
fileno ()

The file descriptor for the socket.

# File ext/openssl/lib/openssl/ssl.rb, line 243
def fileno
  to_io.fileno
end
getsockopt (level, optname)
# File ext/openssl/lib/openssl/ssl.rb, line 267
def getsockopt(level, optname)
  to_io.getsockopt(level, optname)
end
local_address ()
# File ext/openssl/lib/openssl/ssl.rb, line 255
def local_address
  to_io.local_address
end
peeraddr ()
# File ext/openssl/lib/openssl/ssl.rb, line 251
def peeraddr
  to_io.peeraddr
end
remote_address ()
# File ext/openssl/lib/openssl/ssl.rb, line 259
def remote_address
  to_io.remote_address
end
setsockopt (level, optname, optval)
# File ext/openssl/lib/openssl/ssl.rb, line 263
def setsockopt(level, optname, optval)
  to_io.setsockopt(level, optname, optval)
end
timeout ()
# File ext/openssl/lib/openssl/ssl.rb, line 304
def timeout
  to_io.timeout
end
timeout= (value)
# File ext/openssl/lib/openssl/ssl.rb, line 308
def timeout=(value)
  to_io.timeout=(value)
end
wait (*args)
# File ext/openssl/lib/openssl/ssl.rb, line 291
def wait(*args)
  to_io.wait(*args)
end
wait_readable (*args)
# File ext/openssl/lib/openssl/ssl.rb, line 295
def wait_readable(*args)
  to_io.wait_readable(*args)
end
wait_writable (*args)
# File ext/openssl/lib/openssl/ssl.rb, line 299
def wait_writable(*args)
  to_io.wait_writable(*args)
end