| 46 | } |
| 47 | |
| 48 | static int HTPCallbackResponseHeaderData(htp_tx_data_t *tx_data) |
| 49 | { |
| 50 | fprintf(logfile, "HTPCallbackResponseHeaderData %"PRIuMAX"\n", (uintmax_t)tx_data->len); |
| 51 | if (tx_data->len > 0) { |
| 52 | fprintf(logfile, "HTPCallbackResponseHeaderData %x %x\n", tx_data->data[0], tx_data->data[(uintmax_t)tx_data->len-1]); |
| 53 | } |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | static int HTPCallbackRequestHasTrailer(htp_tx_t *tx) |
| 58 | { |
nothing calls this directly
no outgoing calls
no test coverage detected