| 1280 | protected: |
| 1281 | |
| 1282 | virtual void SetUp() { |
| 1283 | cfg = htp_config_create(); |
| 1284 | connp = htp_connp_create(cfg); |
| 1285 | htp_connp_open(connp, "127.0.0.1", 32768, "127.0.0.1", 80, NULL); |
| 1286 | tx = htp_connp_tx_create(connp); |
| 1287 | urlenp = htp_urlenp_create(tx); |
| 1288 | } |
| 1289 | |
| 1290 | virtual void TearDown() { |
| 1291 | htp_urlenp_destroy(urlenp); |
nothing calls this directly
no test coverage detected