aboutsummaryrefslogtreecommitdiffstats
path: root/lib/webrick/httpauth/authenticator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/webrick/httpauth/authenticator.rb')
-rw-r--r--lib/webrick/httpauth/authenticator.rb20
1 files changed, 12 insertions, 8 deletions
diff --git a/lib/webrick/httpauth/authenticator.rb b/lib/webrick/httpauth/authenticator.rb
index 9b9beeceba..f6d4ab844f 100644
--- a/lib/webrick/httpauth/authenticator.rb
+++ b/lib/webrick/httpauth/authenticator.rb
@@ -16,10 +16,10 @@ module WEBrick
module Authenticator
- RequestField = "Authorization"
- ResponseField = "WWW-Authenticate"
- ResponseInfoField = "Authentication-Info"
- AuthException = HTTPStatus::Unauthorized
+ RequestField = "Authorization" # :nodoc:
+ ResponseField = "WWW-Authenticate" # :nodoc:
+ ResponseInfoField = "Authentication-Info" # :nodoc:
+ AuthException = HTTPStatus::Unauthorized # :nodoc:
##
# Method of authentication, must be overridden by the including class
@@ -43,6 +43,8 @@ module WEBrick
private
+ # :stopdoc:
+
##
# Initializes the authenticator from +config+
@@ -96,6 +98,8 @@ module WEBrick
log(:info, fmt, *args)
end
end
+
+ # :startdoc:
end
##
@@ -103,10 +107,10 @@ module WEBrick
# authentication schemes for proxies.
module ProxyAuthenticator
- RequestField = "Proxy-Authorization"
- ResponseField = "Proxy-Authenticate"
- InfoField = "Proxy-Authentication-Info"
- AuthException = HTTPStatus::ProxyAuthenticationRequired
+ RequestField = "Proxy-Authorization" # :nodoc:
+ ResponseField = "Proxy-Authenticate" # :nodoc:
+ InfoField = "Proxy-Authentication-Info" # :nodoc:
+ AuthException = HTTPStatus::ProxyAuthenticationRequired # :nodoc:
end
end
end