1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Synchronize signals to the main select/event/timer loop.

Parse command line options.
This commit is contained in:
Martin Mares
1999-02-13 19:43:21 +00:00
parent 1a54b1c6ac
commit 4c9dd1e4b9
3 changed files with 116 additions and 23 deletions

View File

@@ -9,8 +9,16 @@
#ifndef _BIRD_UNIX_H_
#define _BIRD_UNIX_H_
/* main.c */
void async_config(void);
void async_dump(void);
/* io.c */
volatile int async_config_flag;
volatile int async_dump_flag;
void io_init(void);
void io_loop(void);
void fill_in_sockaddr(struct sockaddr_in *sa, ip_addr a, unsigned port);