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

Added UNIX implementation of both timers and sockets. Timers should work,

sockets were tested only in TCP mode. main.c now contains some test
cases for socket code.
This commit is contained in:
Martin Mares
1998-05-24 14:50:18 +00:00
parent 6d45cf21be
commit b5d9ee5c87
3 changed files with 843 additions and 2 deletions

17
sysdep/unix/unix.h Normal file
View File

@@ -0,0 +1,17 @@
/*
* 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