コード例 #1
0
htp_param_t *htp_tx_req_get_param(htp_tx_t *tx, const char *name, size_t name_len) {
    if ((tx == NULL) || (name == NULL)) return NULL;
    return htp_table_get_mem(tx->request_params, name, name_len);
}
コード例 #2
0
ファイル: htp_transaction.c プロジェクト: brainyhung/libhtp-1
htp_param_t *htp_tx_req_get_param(htp_tx_t *tx, const char *name, size_t name_len) {
    return htp_table_get_mem(tx->request_params, name, name_len);
}