1998-11-28 03:35:10 +08:00
|
|
|
/*
|
|
|
|
* BIRD Internet Routing Daemon -- Configuration File Handling
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_CONF_H_
|
|
|
|
#define _BIRD_CONF_H_
|
|
|
|
|
|
|
|
#include "lib/resource.h"
|
|
|
|
|
1998-11-30 05:59:37 +08:00
|
|
|
/* Pools */
|
|
|
|
|
1998-11-28 03:35:10 +08:00
|
|
|
extern pool *cfg_pool;
|
1998-12-06 19:59:18 +08:00
|
|
|
extern linpool *cfg_mem;
|
1998-11-28 03:35:10 +08:00
|
|
|
|
1998-12-06 19:59:18 +08:00
|
|
|
#define cfg_alloc(size) lp_alloc(cfg_mem, size)
|
|
|
|
#define cfg_allocu(size) lp_allocu(cfg_mem, size)
|
|
|
|
#define cfg_allocz(size) lp_allocz(cfg_mem, size)
|
|
|
|
char *cfg_strdup(char *c);
|
1998-11-30 05:59:37 +08:00
|
|
|
|
1998-11-28 03:35:10 +08:00
|
|
|
/* Lexer */
|
|
|
|
|
|
|
|
extern int (*cf_read_hook)(byte *buf, unsigned int max);
|
|
|
|
|
|
|
|
struct symbol {
|
|
|
|
struct symbol *next;
|
|
|
|
int class;
|
1998-11-28 05:32:45 +08:00
|
|
|
int aux;
|
1998-11-28 03:35:10 +08:00
|
|
|
void *def;
|
|
|
|
char name[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SYM_VOID 0
|
1998-11-28 05:07:02 +08:00
|
|
|
#define SYM_PROTO 1
|
1998-11-28 05:32:45 +08:00
|
|
|
#define SYM_NUMBER 2
|
1999-01-15 22:41:51 +08:00
|
|
|
#define SYM_STAT 3 /* statement */
|
|
|
|
#define SYM_VARIABLE_INT 4
|
|
|
|
#define SYM_FUNCTION 5
|
|
|
|
#define SYM_FILTER 6
|
1998-11-28 03:35:10 +08:00
|
|
|
|
|
|
|
void cf_lex_init_tables(void);
|
|
|
|
int cf_lex(void);
|
|
|
|
void cf_lex_init(int flag);
|
1998-12-07 07:10:28 +08:00
|
|
|
void cf_error(char *msg, ...) NORET;
|
1998-11-28 03:35:10 +08:00
|
|
|
void cf_allocate(void);
|
1998-11-28 05:07:02 +08:00
|
|
|
struct symbol *cf_default_name(char *prefix);
|
1998-11-28 03:35:10 +08:00
|
|
|
|
|
|
|
/* Parser */
|
|
|
|
|
|
|
|
int cf_parse(void);
|
|
|
|
|
|
|
|
#endif
|