Example #1
0
htp_status_t htp_connp_RES_FINALIZE(htp_connp_t *connp) {
    return htp_tx_state_response_complete_ex(connp->out_tx, 0 /* not hybrid mode */);
}
Example #2
0
htp_status_t htp_tx_state_response_complete(htp_tx_t *tx) {
    if (tx == NULL) return HTP_ERROR;
    return htp_tx_state_response_complete_ex(tx, 1 /* hybrid mode */);
}