| 132 | string gzipped_data; |
| 133 | |
| 134 | InterceptData(TSCont cont) |
| 135 | : net_vc(nullptr), |
| 136 | contp(cont), |
| 137 | input(), |
| 138 | output(), |
| 139 | req_hdr_bufp(nullptr), |
| 140 | req_hdr_loc(nullptr), |
| 141 | req_hdr_parsed(false), |
| 142 | initialized(false), |
| 143 | fetcher(nullptr), |
| 144 | read_complete(false), |
| 145 | write_complete(false) |
| 146 | { |
| 147 | http_parser = TSHttpParserCreate(); |
| 148 | } |
| 149 | |
| 150 | bool init(TSVConn vconn); |
| 151 | void setupWrite(); |
nothing calls this directly
no test coverage detected