#include "output.h"
/**
- * \brief Regex for parsing our flow options
+ * \brief Regex for parsing our config keyword options
*/
#define PARSE_REGEX "^\\s*([A-z_]+)\\s*\\s*([A-z_]+)\\s*(?:,\\s*([A-z_]+)\\s+([A-z_]+))?\\s*(?:,\\s*([A-z_]+)\\s+([A-z_]+))?$"
#endif
/**
- * \brief Registration function for keyword: filestore
+ * \brief Registers the "config" keyword for detection.
*/
void DetectConfigRegister(void)
{
}
/**
- * \brief apply the post match filestore with options
+ * \brief apply the post match config with options
*/
static int ConfigApply(DetectEngineThreadCtx *det_ctx,
Packet *p, const DetectConfigData *config)
}
#ifdef UNITTESTS
-/*
- * The purpose of this test is to confirm that
- * filestore and bypass keywords can't
- * can't work together
- */
static int DetectConfigTest01(void)
{
DetectEngineCtx *de_ctx = DetectEngineCtxInit();