Lines Matching refs:END_OF_HEADERS
156 #define END_OF_HEADERS "\r\n\r\n" macro
171 "HTTP/1.1 200 Goodbye" END_OF_HEADERS;
175 "HTTP/1.1 200 Mighty fine indeed" END_OF_HEADERS;
179 "HTTP/1.1 501 Forbidden you fool" END_OF_HEADERS;
186 END_OF_HEADERS
198 END_OF_HEADERS;
212 char *end = strstr(line, END_OF_HEADERS); in ProcessRequest()
447 req->checkindex += (end - line) + strlen(END_OF_HEADERS); in ProcessRequest()
556 req->reqbuf + req->offset > end + strlen(END_OF_HEADERS) && in ProcessRequest()
561 req->checkindex = (end - req->reqbuf) + strlen(END_OF_HEADERS); in ProcessRequest()
570 end = strstr(line, END_OF_HEADERS); in ProcessRequest()
573 req->checkindex += (end - line) + strlen(END_OF_HEADERS); in ProcessRequest()
585 if(req->cl <= req->offset - (end - req->reqbuf) - strlen(END_OF_HEADERS)) in ProcessRequest()