Lines Matching defs:HttpHead
11 typedef struct HttpHead HttpHead; typedef
158 struct HttpHead struct
160 int closeit; /* http1.1 close connection after this request? */
161 uchar persist; /* http/1.1 requests a persistent connection */
163 uchar expectcont; /* expect a 100-continue */
164 uchar expectother; /* expect anything else; should reject with ExpectFail */
165 ulong contlen; /* if != ~0UL, length of included message body */
166 HFields *transenc; /* if present, encoding of included message body */
167 char *client;
168 char *host;
169 HContent *okencode;
170 HContent *oklang;
171 HContent *oktype;
172 HContent *okchar;
173 ulong ifmodsince;
174 ulong ifunmodsince;
175 ulong ifrangedate;
176 HETag *ifmatch;
177 HETag *ifnomatch;
178 HETag *ifrangeetag;
179 HRange *range;
180 char *authuser; /* authorization info */
204 HttpHead head; argument