Lines Matching defs:line
208 char *line = &req->reqbuf[req->checkindex];
214 char *end = strstr(line, END_OF_HEADERS);
216 logmsg("ProcessRequest() called with testno %ld and line [%s]",
217 req->testno, line);
222 sscanf(line,
426 CONNECT line will be used as test number! */
453 req->checkindex += (end - line) + strlen(END_OF_HEADERS);
470 if((req->cl == 0) && strncasecompare("Content-Length:", line, 15)) {
476 char *ptr = line + 15;
496 else if(strncasecompare("Transfer-Encoding: chunked", line,
510 line = strchr(line, '\n');
511 if(line)
512 line++;
514 } while(line);
574 line = &req->reqbuf[req->checkindex];
575 end = strstr(line, END_OF_HEADERS);
578 req->checkindex += (end - line) + strlen(END_OF_HEADERS);