summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/unix.h
blob: a79db2ed0000e49eed4ad068e4edb0515950634e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 *	BIRD -- Declarations Common to Unix Port
 *
 *	(c) 1998 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#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);
void get_sockaddr(struct sockaddr_in *sa, ip_addr *a, unsigned *port);

/* sync-if.c */

extern int if_scan_sock;
extern int if_scan_period;

void scan_if_init(void);

#endif