Skip to content
Snippets Groups Projects
Commit 0102726a authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Digest support added

parent 1e7aa040
No related branches found
No related tags found
No related merge requests found
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment