| 53 | #endif |
| 54 | |
| 55 | static htp_status_t GUnzip_decompressor_callback(htp_tx_data_t *d) { |
| 56 | bstr **output = (bstr **) htp_tx_get_user_data(d->tx); |
| 57 | *output = bstr_dup_mem(d->data, d->len); |
| 58 | |
| 59 | return HTP_OK; |
| 60 | } |
| 61 | |
| 62 | class GUnzip : public testing::Test { |
| 63 | protected: |
nothing calls this directly
no test coverage detected