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