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