Module: OpenSSL::SSL::SocketForwarder
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
| |
Defined in: | ext/openssl/lib/openssl/ssl.rb |
Instance Attribute Summary
- #close_on_exec=(value) rw
- #close_on_exec? ⇒ Boolean rw
- #closed? ⇒ Boolean readonly
- #do_not_reverse_lookup=(flag) writeonly
- #timeout rw
- #timeout=(value) rw
Instance Method Summary
- #addr
- #fcntl(*args)
-
#fileno
The file descriptor for the socket.
- #getsockopt(level, optname)
- #local_address
- #peeraddr
- #remote_address
- #setsockopt(level, optname, optval)
- #wait(*args)
- #wait_readable(*args)
- #wait_writable(*args)
Instance Attribute Details
#close_on_exec=(value) (rw)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 283
def close_on_exec=(value) to_io.close_on_exec = value end
#close_on_exec? ⇒ Boolean
(rw)
[ GitHub ]
# File 'ext/openssl/lib/openssl/ssl.rb', line 287
def close_on_exec? to_io.close_on_exec? end
#closed? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'ext/openssl/lib/openssl/ssl.rb', line 275
def closed? to_io.closed? end
#do_not_reverse_lookup=(flag) (writeonly)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 279
def do_not_reverse_lookup=(flag) to_io.do_not_reverse_lookup = flag end
#timeout (rw)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 304
def timeout to_io.timeout end
#timeout=(value) (rw)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 308
def timeout=(value) to_io.timeout=(value) end
Instance Method Details
#addr
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 247
def addr to_io.addr end
#fcntl(*args)
[ GitHub ]# 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)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 267
def getsockopt(level, optname) to_io.getsockopt(level, optname) end
#local_address
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 255
def local_address to_io.local_address end
#peeraddr
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 251
def peeraddr to_io.peeraddr end
#remote_address
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 259
def remote_address to_io.remote_address end
#setsockopt(level, optname, optval)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 263
def setsockopt(level, optname, optval) to_io.setsockopt(level, optname, optval) end
#wait(*args)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 291
def wait(*args) to_io.wait(*args) end
#wait_readable(*args)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 295
def wait_readable(*args) to_io.wait_readable(*args) end
#wait_writable(*args)
[ GitHub ]# File 'ext/openssl/lib/openssl/ssl.rb', line 299
def wait_writable(*args) to_io.wait_writable(*args) end