sysclose()
public
Sends “close notify” to the peer and tries to shut down the SSL connection gracefully.
If sync_close is set to true, the underlying IO is also closed.
# File ext/openssl/lib/openssl/ssl.rb, line 267
def sysclose
return if closed?
stop
io.close if sync_close
end