-
Notifications
You must be signed in to change notification settings - Fork 2
/
adj_rib_in.h
50 lines (41 loc) · 1.46 KB
/
adj_rib_in.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* dvpn, a multipoint vpn implementation
* Copyright (C) 2016 Lennert Buytenhek
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version
* 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 2.1 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License version 2.1 along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __ADJ_RIB_IN_H
#define __ADJ_RIB_IN_H
#include <iv_avl.h>
#include <iv_list.h>
#include "lsa.h"
#include "rib_listener.h"
#define ADJ_RIB_IN_MAX_BYTES 1048576
#define LSA_MAX_BYTES 32768
struct adj_rib_in {
const uint8_t *myid;
const uint8_t *remoteid;
struct iv_avl_tree lsas;
int size;
struct iv_list_head listeners;
};
void adj_rib_in_init(struct adj_rib_in *rib);
int adj_rib_in_add_lsa(struct adj_rib_in *rib, struct lsa *lsa);
void adj_rib_in_truncate(struct adj_rib_in *rib);
void adj_rib_in_listener_register(struct adj_rib_in *rib,
struct rib_listener *rl);
void adj_rib_in_listener_unregister(struct adj_rib_in *rib,
struct rib_listener *rl);
#endif