method
authenticate
v1_9_2_180 -
Show latest stable
- Class:
WEBrick::HTTPAuth::DigestAuth
authenticate(req, res)public
No documentation available.
# File lib/webrick/httpauth/digestauth.rb, line 65
def authenticate(req, res)
unless result = @mutex.synchronize{ _authenticate(req, res) }
challenge(req, res)
end
if result == :nonce_is_stale
challenge(req, res, true)
end
return true
end