~ubuntu-branches/ubuntu/utopic/suricata/utopic

« back to all changes in this revision

Viewing changes to src/detect-engine.h

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2011-11-17 23:20:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20111117232051-wlo0g2fyinx0zi25
Tags: 1.1-1
* Imported Upstream version 1.1
* Add instructions on getting new rules using oinkmaster
* Add Recommends on oinkmaster
* Move snort-rules-default to Recommends

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#define __DETECT_ENGINE_H__
26
26
 
27
27
#include "detect.h"
28
 
#include "tm-modules.h"
 
28
#include "tm-threads.h"
29
29
 
30
30
/* prototypes */
31
31
DetectEngineCtx *DetectEngineCtxInit(void);
37
37
/* faster as a macro than a inline function on my box -- VJ */
38
38
#define DetectEngineGetMaxSigId(de_ctx) ((de_ctx)->signum)
39
39
void DetectEngineResetMaxSigId(DetectEngineCtx *);
 
40
void DetectEngineRegisterTests(void);
40
41
 
41
42
#endif /* __DETECT_ENGINE_H__ */
42
43