Move type first in SigMatch array since it is used more often.

pull/1295/head
Ken Steele 11 years ago committed by Victor Julien
parent 7a2095d851
commit fa51118dfe

@ -366,8 +366,8 @@ typedef struct SignatureHeader_ {
/** \brief a single match condition for a signature */
typedef struct SigMatch_ {
uint16_t idx; /**< position in the signature */
uint8_t type; /**< match type */
uint16_t idx; /**< position in the signature */
void *ctx; /**< plugin specific data */
struct SigMatch_ *next;
struct SigMatch_ *prev;

Loading…
Cancel
Save