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