| 71 | bool initialized; |
| 72 | |
| 73 | SContData(TSCont cont) |
| 74 | : net_vc(nullptr), |
| 75 | contp(cont), |
| 76 | input(), |
| 77 | output(), |
| 78 | body(""), |
| 79 | req_content_len(0), |
| 80 | req_hdr_bufp(nullptr), |
| 81 | req_hdr_loc(nullptr), |
| 82 | req_hdr_parsed(false), |
| 83 | initialized(false) |
| 84 | { |
| 85 | http_parser = TSHttpParserCreate(); |
| 86 | } |
| 87 | |
| 88 | bool init(TSVConn vconn); |
| 89 |
nothing calls this directly
no test coverage detected