Digest support added

This commit is contained in:
Daniel Stenberg 2003-05-22 22:36:39 +00:00
parent 1e7aa04040
commit 0102726aeb
1 changed files with 7 additions and 0 deletions

View File

@ -290,6 +290,13 @@ static int get_request(int sock, int *part)
sprintf(logbuf, "Found test number %d in path", test_no);
logmsg(logbuf);
if(strstr(reqbuf, "Authorization: Digest")) {
/* If the client is passing this Digest-header, we set the part number
to 1000. Not only to spice up the complexity of this, but to make
Digest stuff to work in the test suite. */
*part = 1000;
}
}
else {
if(sscanf(reqbuf, "CONNECT %" MAXDOCNAMELEN_TXT "s HTTP/%d.%d",