You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/src/detect-tag.c

21 lines
553 B
C

/* TAG part of the detection engine. */
#include "suricata-common.h"
#include "detect.h"
int DetectTagSetup (DetectEngineCtx *, Signature *s, SigMatch *m, char *str);
void DetectTagRegister (void) {
sigmatch_table[DETECT_TAG].name = "tag";
sigmatch_table[DETECT_TAG].Match = NULL;
sigmatch_table[DETECT_TAG].Setup = DetectTagSetup;
sigmatch_table[DETECT_TAG].Free = NULL;
sigmatch_table[DETECT_TAG].RegisterTests = NULL;
}
int DetectTagSetup (DetectEngineCtx *de_ctx, Signature *s, SigMatch *m, char *rawstr)
{
return 0;
}