b5d9ee5c87
sockets were tested only in TCP mode. main.c now contains some test cases for socket code.
17 lines
270 B
C
17 lines
270 B
C
/*
|
|
* 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_
|
|
|
|
/* io.c */
|
|
|
|
void io_init(void);
|
|
void io_loop(void);
|
|
|
|
#endif
|