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