static int pcre_use_jit = 1;
#endif
-int DetectPcreMatch (ThreadVars *, DetectEngineThreadCtx *, Packet *, Signature *, SigMatch *);
-int DetectPcreALMatchCookie(ThreadVars *t, DetectEngineThreadCtx *det_ctx, Flow *f, uint8_t flags, void *state, Signature *s, SigMatch *m);
-int DetectPcreALMatchMethod(ThreadVars *t, DetectEngineThreadCtx *det_ctx, Flow *f, uint8_t flags, void *state, Signature *s, SigMatch *m);
static int DetectPcreSetup (DetectEngineCtx *, Signature *, char *);
-void DetectPcreFree(void *);
-void DetectPcreRegisterTests(void);
+static void DetectPcreFree(void *);
+static void DetectPcreRegisterTests(void);
void DetectPcreRegister (void)
{
SCReturnInt(ret);
}
-void DetectPcreFree(void *ptr)
+static void DetectPcreFree(void *ptr)
{
if (ptr == NULL)
return;
/**
* \brief this function registers unit tests for DetectPcre
*/
-void DetectPcreRegisterTests(void)
+static void DetectPcreRegisterTests(void)
{
#ifdef UNITTESTS /* UNITTESTS */
g_file_data_buffer_id = DetectBufferTypeGetByName("file_data");