detect/prefilter: update tx_min_progress to uint8_t

Now that our make progress value is 47, we don't need an int.
pull/6383/head
Victor Julien 4 years ago
parent ed87784907
commit 88bb23b7cf

@ -1268,7 +1268,7 @@ typedef struct PrefilterEngineList_ {
AppProto alproto;
/** Minimal Tx progress we need before running the engine. Only used
* with Tx Engine */
int tx_min_progress;
uint8_t tx_min_progress;
/** Context for matching. Might be MpmCtx for MPM engines, other ctx'
* for other engines. */
@ -1296,7 +1296,7 @@ typedef struct PrefilterEngine_ {
AppProto alproto;
/** Minimal Tx progress we need before running the engine. Only used
* with Tx Engine */
int tx_min_progress;
uint8_t tx_min_progress;
/** Context for matching. Might be MpmCtx for MPM engines, other ctx'
* for other engines. */

Loading…
Cancel
Save