Lines Matching refs:cl
107 size_t cl; /* Content-Length of the incoming request */ member
622 if((req->cl == 0) && strncasecompare("Content-Length:", line, 15)) { in ProcessRequest()
642 req->cl = 0; in ProcessRequest()
644 req->cl = clen - req->skip; in ProcessRequest()
648 logmsg("... but will abort after %zu bytes", req->cl); in ProcessRequest()
658 if(req->cl) in ProcessRequest()
659 req->cl = 0; in ProcessRequest()
727 if(req->cl) { in ProcessRequest()
728 logmsg(" Expecting %zu POSTed bytes", req->cl); in ProcessRequest()
752 !req->cl && in ProcessRequest()
776 if(req->cl > 0) { in ProcessRequest()
777 if(req->cl <= req->offset - (end - req->reqbuf) - strlen(end_of_headers)) in ProcessRequest()
853 req->cl = 0; in init_httprequest()
946 got = sread(sock, reqbuf + req->offset, req->cl); in get_request()