Lines Matching defs:httprequest
96 struct httprequest { struct
97 char reqbuf[REQBUFSIZ]; /* buffer area for the incoming request */
98 bool connect_request; /* if a CONNECT */
99 unsigned short connect_port; /* the port number CONNECT used */
100 size_t checkindex; /* where to start checking of the request */
101 size_t offset; /* size of the incoming request */
102 long testno; /* test number found in the request */
103 long partno; /* part number found in the request */
104 bool open; /* keep connection open info, as found in the request */
105 bool auth_req; /* authentication required, don't wait for body unless
107 bool auth; /* Authorization header present in the incoming request */
108 size_t cl; /* Content-Length of the incoming request */
109 bool digest; /* Authorization digest header found */
110 bool ntlm; /* Authorization ntlm header found */
111 int writedelay; /* if non-zero, delay this number of seconds between
135 static int ProcessRequest(struct httprequest *req); argument