diff options
author | Stef Walter <stef@memberwebs.com> | 2004-08-09 18:35:56 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-08-09 18:35:56 +0000 |
commit | 670eba73c474230e31d688e9568fcd540b4e3b39 (patch) | |
tree | 624502f0713a9c6f3b0520416134b405f150f356 /doc | |
parent | b0e50bbeb12e6247dd52dfd9e44c62f558c8a3a0 (diff) |
- added request parameter to ha_message...
- combined ha_request and ha_response
Diffstat (limited to 'doc')
-rw-r--r-- | doc/protocol.txt | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/protocol.txt b/doc/protocol.txt index b6bc0ba..c409c8c 100644 --- a/doc/protocol.txt +++ b/doc/protocol.txt @@ -19,15 +19,12 @@ will be accepted on the connection. REQUESTS ------------------------------------------------------------------- -AUTH authmethod connid method uri +AUTH connid method uri The AUTH command asks the daemon to perform authentication for a given set of header from the client. None of the arguments should contain spaces. - authmethod: is the authentication method. Methods are - defined by the daemon in it's config file. - connid: a unique string identifying the connection from the client. This is only important when NTLM is being used. If not, pass a random string. @@ -44,6 +41,15 @@ AUTH authmethod connid method uri Headers should be specified on one line, not 'wrapped' as is permissible in HTTP. +SET name value + + Sets a given value for the connection. Examples are listed below: + + Handler: The name of handler to use for authentication (as + configured in httpauthd.conf). + + Domain: The domains for digest authentication. + QUIT This closes the connection to the daemon. @@ -64,6 +70,8 @@ The codes are similar to HTTP: 200 Successful Request (detail is described below) + 202 Accepted + 4xx Request Error (detail is an error message) |