| 68 cxmutstr httpv; |
68 cxmutstr httpv; |
| 69 cxmutstr msg; |
69 cxmutstr msg; |
| 70 int status; |
70 int status; |
| 71 |
71 |
| 72 /* local parser variables */ |
72 /* local parser variables */ |
| 73 int wl; /* only white space */ |
73 int wl; /* only white space */ |
| 74 int tk; /* token: 0: header name 1: header value */ |
74 int tk; /* token: 0: header name 1: header value */ |
| 75 int offset; /* offset of parsed string */ |
75 int line_offset; /* offset of parsed string */ |
| 76 int strend; /* end position */ |
76 int strend; /* end position */ |
| 77 cxmutstr name; |
77 cxmutstr name; |
| 78 cxmutstr value; |
78 cxmutstr value; |
| 79 |
79 |
| 80 } HttpParser; |
80 } HttpParser; |
| 81 |
81 |