@ -976,49 +976,53 @@ typedef struct SigGroupHead_ {
/* track min pattern length for content. Used in grouping */
uint16_t mpm_content_minlen ;
uint16_t mpm_uricontent_minlen ; /**< len of shortest mpm pattern in sgh */
/* non mpm list excluding SYN rules */
SignatureNonMpmStore * non_mpm_other_store_array ; // size is non_mpm_store_cnt * sizeof(SignatureNonMpmStore)
uint32_t non_mpm_other_store_cnt ;
SignatureNonMpmStore * non_mpm_other_store_array ; // size is non_mpm_store_cnt * sizeof(SignatureNonMpmStore)
/* non mpm list including SYN rules */
SignatureNonMpmStore * non_mpm_syn_store_array ; // size is non_mpm_syn_store_cnt * sizeof(SignatureNonMpmStore)
uint32_t non_mpm_syn_store_cnt ;
/* pattern matcher instances */
const MpmCtx * mpm_proto_other_ctx ;
const MpmCtx * mpm_proto_tcp_ctx_ts ;
const MpmCtx * mpm_proto_udp_ctx_ts ;
const MpmCtx * mpm_stream_ctx_ts ;
const MpmCtx * mpm_uri_ctx_ts ;
const MpmCtx * mpm_hcbd_ctx_ts ;
const MpmCtx * mpm_hhd_ctx_ts ;
const MpmCtx * mpm_hrhd_ctx_ts ;
const MpmCtx * mpm_hmd_ctx_ts ;
const MpmCtx * mpm_hcd_ctx_ts ;
const MpmCtx * mpm_hrud_ctx_ts ;
const MpmCtx * mpm_huad_ctx_ts ;
const MpmCtx * mpm_hhhd_ctx_ts ;
const MpmCtx * mpm_hrhhd_ctx_ts ;
const MpmCtx * mpm_dnsquery_ctx_ts ;
const MpmCtx * mpm_smtp_filedata_ctx_ts ;
const MpmCtx * mpm_proto_tcp_ctx_tc ;
const MpmCtx * mpm_proto_udp_ctx_tc ;
const MpmCtx * mpm_stream_ctx_tc ;
const MpmCtx * mpm_hsbd_ctx_tc ;
const MpmCtx * mpm_hhd_ctx_tc ;
const MpmCtx * mpm_hrhd_ctx_tc ;
const MpmCtx * mpm_hcd_ctx_tc ;
const MpmCtx * mpm_hsmd_ctx_tc ;
const MpmCtx * mpm_hscd_ctx_tc ;
uint16_t mpm_uricontent_minlen ; /**< len of shortest mpm pattern in sgh */
/** the number of signatures in this sgh that have the filestore keyword
* set . */
uint16_t filestore_cnt ;
/* pattern matcher instances */
const MpmCtx * mpm_proto_other_ctx ;
union {
struct {
const MpmCtx * mpm_proto_tcp_ctx_ts ;
const MpmCtx * mpm_proto_udp_ctx_ts ;
const MpmCtx * mpm_stream_ctx_ts ;
const MpmCtx * mpm_uri_ctx_ts ;
const MpmCtx * mpm_hcbd_ctx_ts ;
const MpmCtx * mpm_hhd_ctx_ts ;
const MpmCtx * mpm_hrhd_ctx_ts ;
const MpmCtx * mpm_hmd_ctx_ts ;
const MpmCtx * mpm_hcd_ctx_ts ;
const MpmCtx * mpm_hrud_ctx_ts ;
const MpmCtx * mpm_huad_ctx_ts ;
const MpmCtx * mpm_hhhd_ctx_ts ;
const MpmCtx * mpm_hrhhd_ctx_ts ;
const MpmCtx * mpm_dnsquery_ctx_ts ;
const MpmCtx * mpm_smtp_filedata_ctx_ts ;
} ;
struct {
const MpmCtx * mpm_proto_tcp_ctx_tc ;
const MpmCtx * mpm_proto_udp_ctx_tc ;
const MpmCtx * mpm_stream_ctx_tc ;
const MpmCtx * mpm_hsbd_ctx_tc ;
const MpmCtx * mpm_hhd_ctx_tc ;
const MpmCtx * mpm_hrhd_ctx_tc ;
const MpmCtx * mpm_hcd_ctx_tc ;
const MpmCtx * mpm_hsmd_ctx_tc ;
const MpmCtx * mpm_hscd_ctx_tc ;
} ;
} ;
/** Array with sig ptrs... size is sig_cnt * sizeof(Signature *) */
Signature * * match_array ;