mirror of https://github.com/OISF/suricata
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.
14 lines
318 B
C
14 lines
318 B
C
#ifndef __DETECT_PARSE_H__
|
|
#define __DETECT_PARSE_H__
|
|
|
|
/* prototypes */
|
|
int SigParse(Signature *s, char *sigstr);
|
|
Signature *SigAlloc (void);
|
|
void SigFree(Signature *s);
|
|
Signature *SigInit(DetectEngineCtx *,char *sigstr);
|
|
void SigParsePrepare(void);
|
|
void SigParseRegisterTests(void);
|
|
|
|
#endif /* __DETECT_PARSE_H__ */
|
|
|