1998-04-23 22:01:15 +08:00
|
|
|
/*
|
|
|
|
* 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
|
1998-04-28 22:39:34 +08:00
|
|
|
#include "ipv4.h"
|
1998-04-23 22:01:15 +08:00
|
|
|
#else
|
1998-04-28 22:39:34 +08:00
|
|
|
#include "ipv6.h"
|
1998-04-23 22:01:15 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|