repo.or.cz
/
umfw.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added (unused) rules.rc parser to so. it will be used later.
[umfw.git]
/
src
/
ruletest.c
blob
b1b031399822404b2031d46186ea5a249d19fd4b
1
#ifndef OPT_USE_RULE_PARSER
2
# define OPT_USE_RULE_PARSER
3
#endif
4
5
#define OPT_RULEPARSER_TEST
6
7
#include <arpa/inet.h>
8
#include <errno.h>
9
#include <fcntl.h>
10
#include <stdarg.h>
11
#include <stdint.h>
12
#include <stdlib.h>
13
#include <stdio.h>
14
#include <string.h>
15
#include <sys/types.h>
16
#include <sys/stat.h>
17
#include <unistd.h>
18
19
#include
"uproto.h"
20
#include
"common.h"
21
22
#include
"common.c"
23
#include
"rulecache.c"
24
#include
"ruleparser.c"
25
26
27
int
main
() {
28
initRuleParser
();
29
return
0
;
30
}