| 124 | list<string> post_headers; |
| 125 | |
| 126 | ContData(TSCont contptr, TSHttpTxn tx, const OptionInfo *opt_info) |
| 127 | : curr_state(READING_ESI_DOC), |
| 128 | input_vio(nullptr), |
| 129 | output_vio(nullptr), |
| 130 | output_buffer(nullptr), |
| 131 | output_reader(nullptr), |
| 132 | esi_vars(nullptr), |
| 133 | data_fetcher(nullptr), |
| 134 | esi_proc(nullptr), |
| 135 | esi_gzip(nullptr), |
| 136 | esi_gunzip(nullptr), |
| 137 | contp(contptr), |
| 138 | txnp(tx), |
| 139 | option_info(opt_info), |
| 140 | request_url(nullptr), |
| 141 | input_type(DATA_TYPE_RAW_ESI), |
| 142 | packed_node_list(""), |
| 143 | gzipped_data(""), |
| 144 | gzip_output(false), |
| 145 | initialized(false), |
| 146 | xform_closed(false), |
| 147 | intercept_header(false), |
| 148 | cache_txn(false), |
| 149 | head_only(false), |
| 150 | os_response_cacheable(true) |
| 151 | { |
| 152 | client_addr = TSHttpTxnClientAddrGet(txnp); |
| 153 | } |
| 154 | |
| 155 | void fillPostHeader(TSMBuffer bufp, TSMLoc hdr_loc); |
| 156 |
nothing calls this directly
no test coverage detected