]>
Commit | Line | Data |
---|---|---|
1 | ||
2 | ||
3 | void parse_init(void); | |
4 | int parse(FILE **); | |
5 | int parse_string(char *); | |
6 | ||
7 | int setkeymsg(char *, size_t *); | |
8 | int sendkeymsg(char *, size_t); | |
9 | ||
10 | int yylex(void); | |
11 | int yyparse(void); | |
12 | void yyfatal(const char *); | |
13 | void yyerror(const char *); | |
14 | ||
15 | extern int f_rfcmode; | |
16 | extern int lineno; | |
17 | extern int last_msg_type; | |
18 | extern u_int32_t last_priority; | |
19 | extern int exit_now; | |
20 | ||
21 | extern u_char m_buf[BUFSIZ]; | |
22 | extern u_int m_len; | |
23 | extern int f_debug; | |
24 | ||
25 | #ifdef HAVE_PFKEY_POLICY_PRIORITY | |
26 | extern int last_msg_type; | |
27 | extern u_int32_t last_priority; | |
28 | #endif |