File: grok_matchconf_macro.h

package info (click to toggle)
grok 1.20110708.1-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,388 kB
  • sloc: ansic: 3,469; ruby: 987; makefile: 276; sh: 124; yacc: 106
file content (24 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _GROK_MATCHCONF_MACRO_
#define _GROK_MATCHCONF_MACRO_

enum matchconf_macro_type {
  VALUE_LINE,
  VALUE_MATCH,
  VALUE_JSON_COMPLEX,
  VALUE_JSON_SIMPLE,
  VALUE_START,
  VALUE_END,
  VALUE_LENGTH,
};

#ifndef _GPERF_
struct strmacro {
  const char *str;
  int code;
};
#endif

/* this function is generated by gperf */
const struct strmacro *patname2macro(const char *str, unsigned int len);

#endif /* _GROK_MATCHCONF_MACRO_ */