1998-05-24 22:50:18 +08:00
|
|
|
/*
|
|
|
|
* 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_
|
|
|
|
|
1999-02-14 03:43:21 +08:00
|
|
|
/* main.c */
|
|
|
|
|
|
|
|
void async_config(void);
|
|
|
|
void async_dump(void);
|
1999-02-14 04:15:36 +08:00
|
|
|
void async_shutdown(void);
|
1999-02-14 03:43:21 +08:00
|
|
|
|
1998-05-24 22:50:18 +08:00
|
|
|
/* io.c */
|
|
|
|
|
1999-02-14 03:43:21 +08:00
|
|
|
volatile int async_config_flag;
|
|
|
|
volatile int async_dump_flag;
|
1999-02-14 04:15:36 +08:00
|
|
|
volatile int async_shutdown_flag;
|
1999-02-14 03:43:21 +08:00
|
|
|
|
1998-05-24 22:50:18 +08:00
|
|
|
void io_init(void);
|
|
|
|
void io_loop(void);
|
1998-10-20 01:47:50 +08:00
|
|
|
void fill_in_sockaddr(struct sockaddr_in *sa, ip_addr a, unsigned port);
|
1998-05-27 05:46:38 +08:00
|
|
|
void get_sockaddr(struct sockaddr_in *sa, ip_addr *a, unsigned *port);
|
|
|
|
|
1999-03-27 05:44:38 +08:00
|
|
|
/* krt.c bits */
|
|
|
|
|
|
|
|
void krt_io_init(void);
|
|
|
|
|
1998-05-24 22:50:18 +08:00
|
|
|
#endif
|