RTRlib
rtrlib.h
1/*
2 * This file is part of RTRlib.
3 *
4 * This file is subject to the terms and conditions of the MIT license.
5 * See the file LICENSE in the top level directory for more details.
6 *
7 * Website: http://rtrlib.realmv6.org/
8 */
9
10#ifndef RTRLIB_H
11#define RTRLIB_H
12
13/* #undef RTRLIB_HAVE_LIBSSH */
14#define RTRLIB_VERSION_MAJOR 0
15#define RTRLIB_VERSION_MINOR 6
16#define RTRLIB_VERSION_PATCH 1
17
18#include "lib/alloc_utils.h"
19#include "lib/ip.h"
20#include "lib/ipv4.h"
21#include "lib/ipv6.h"
22#include "pfx/pfx.h"
23#include "rtr/rtr.h"
24#include "rtr_mgr.h"
25#include "spki/spkitable.h"
26#include "transport/tcp/tcp_transport.h"
27#include "transport/transport.h"
28#ifdef RTRLIB_HAVE_LIBSSH
29#include "rtrlib/transport/ssh/ssh_transport.h"
30#endif
31
32#endif