improve request initialization for test harness HTTP server

This commit is contained in:
Yang Tse 2008-01-25 05:08:53 +00:00
parent 2198869eb1
commit 69e540dfa6
1 changed files with 10 additions and 0 deletions

View File

@ -1001,6 +1001,16 @@ int main(int argc, char *argv[])
}
#endif
/* full initialization for new request after connection */
memset(&req, 0, sizeof(req));
req.testno = DOCNUMBER_NOTHING;
req.open = TRUE;
req.auth_req = FALSE;
req.auth = FALSE;
req.digest = FALSE;
req.ntlm = FALSE;
req.pipelining = FALSE;
do {
if(get_request(msgsock, &req))
/* non-zero means error, break out of loop */