/* * BIRD -- Declarations Common to Unix Port * * (c) 1998--2000 Martin Mares * * Can be freely distributed and used under the terms of the GNU GPL. */ #ifndef _BIRD_UNIX_H_ #define _BIRD_UNIX_H_ #include struct pool; /* main.c */ extern char *bird_name; void async_config(void); void async_dump(void); void async_shutdown(void); void cmd_check_config(char *name); void cmd_reconfig(char *name, int type, int timeout); void cmd_reconfig_confirm(void); void cmd_reconfig_undo(void); void cmd_shutdown(void); #define UNIX_DEFAULT_CONFIGURE_TIMEOUT 300 /* io.c */ volatile int async_config_flag; volatile int async_dump_flag; volatile int async_shutdown_flag; struct sockaddr; struct iface; void sockaddr_fill(struct sockaddr *sa, ip_addr a, struct iface *ifa, unsigned port); void sockaddr_read(struct sockaddr *sa, ip_addr *a, struct iface **ifa, unsigned *port, int check); #ifndef SUN_LEN #define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) + strlen ((ptr)->sun_path)) #endif struct birdsock; struct iface; void io_init(void); void io_loop(void); void sk_open_unix(struct birdsock *s, char *name); void *tracked_fopen(struct pool *, char *name, char *mode); void test_old_bird(char *path); /* krt.c bits */ void krt_io_init(void); /* log.c */ void log_init_debug(char *); /* Initialize debug dump to given file (NULL=stderr, ""=off) */ void log_switch(int debug, list *l, char *); /* Use l=NULL for initial switch */ struct log_config { node n; unsigned int mask; /* Classes to log */ void *fh; /* FILE to log to, NULL=syslog */ int terminal_flag; }; #endif