class DRb::DRbSSLSocket

def close # :nodoc:

:nodoc:
Closes the SSL stream before closing the dRuby connection.
def close # :nodoc:
  if @ssl
    @ssl.close
    @ssl = nil
  end
  super
end