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

Added IP address manipulation macros, interface declarations and logging.

This commit is contained in:
Martin Mares
1998-04-23 14:01:15 +00:00
parent 481f69854a
commit c40e05a0df
8 changed files with 143 additions and 47 deletions

18
lib/ip.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* BIRD Internet Routing Daemon -- The Internet Protocol
*
* (c) 1998 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_IP_H_
#define _BIRD_IP_H_
#ifndef IPV6
#include <lib/ipv4.h>
#else
#include <lib/ipv6.h>
#endif
#endif