blob: dc4f8b8365ae57c737e5a61760c13083497c4719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 "ipv4.h"
#else
#include "ipv6.h"
#endif
#endif
|