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