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:
18
lib/ip.h
Normal file
18
lib/ip.h
Normal 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
|
Reference in New Issue
Block a user