RTRlib
Loading...
Searching...
No Matches
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#ifdef __cplusplus
11extern "C" {
12#endif
13
14#ifndef RTRLIB_H
15#define RTRLIB_H
16
17#define RTRLIB_HAVE_LIBSSH
18#define RTRLIB_VERSION_MAJOR 0
19#define RTRLIB_VERSION_MINOR 8
20#define RTRLIB_VERSION_PATCH 0
21
22#include "lib/alloc_utils.h"
23#include "lib/ip.h"
24#include "lib/ipv4.h"
25#include "lib/ipv6.h"
26#include "pfx/pfx.h"
27#include "rtr/rtr.h"
28#include "rtr_mgr.h"
29#include "spki/spkitable.h"
30#include "transport/tcp/tcp_transport.h"
31#include "transport/transport.h"
32#ifdef RTRLIB_HAVE_LIBSSH
33#include "rtrlib/transport/ssh/ssh_transport.h"
34#endif
35
36#endif
37
38#ifdef __cplusplus
39}
40#endif