]>
Commit | Line | Data |
---|---|---|
52b7d2ce A |
1 | |
2 | ||
65c25746 A |
3 | void parse_init(void); |
4 | int parse(FILE **); | |
5 | int parse_string(char *); | |
52b7d2ce | 6 | |
65c25746 A |
7 | int setkeymsg(char *, size_t *); |
8 | int sendkeymsg(char *, size_t); | |
52b7d2ce | 9 | |
65c25746 A |
10 | int yylex(void); |
11 | int yyparse(void); | |
12 | void yyfatal(const char *); | |
13 | void yyerror(const char *); | |
52b7d2ce A |
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 |