Lines Matching defs:end
214 char *end = strstr(line, END_OF_HEADERS);
443 if(!end) {
451 /* we do have a full set, advance the checkindex to after the end of the
453 req->checkindex += (end - line) + strlen(END_OF_HEADERS);
504 /* end of chunks reached */
561 req->reqbuf + req->offset > end + strlen(END_OF_HEADERS) &&
566 req->checkindex = (end - req->reqbuf) + strlen(END_OF_HEADERS);
575 end = strstr(line, END_OF_HEADERS);
576 if(!end)
578 req->checkindex += (end - line) + strlen(END_OF_HEADERS);
582 /* If authentication is required and no auth was provided, end now. This
590 if(req->cl <= req->offset - (end - req->reqbuf) - strlen(END_OF_HEADERS))
693 /*** end of httprequest init ***/