summaryrefslogtreecommitdiffstats
path: root/proto/ospf/rt.h
blob: ca3d057282ae26c2720c69eeb5d1d76fdfa25525 (plain)
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
/*
 *      BIRD -- OSPF
 *
 *      (c) 2000--2004 Ondrej Filip <feela@network.cz>
 *
 *      Can be freely distributed and used under the terms of the GNU GPL.
 *
 */

#ifndef _BIRD_OSPF_RT_H_
#define _BIRD_OSPF_RT_H_

typedef struct orta
{
  int type;
  int capa;
  struct ospf_area *oa;
  int metric1;
  int metric2;
  ip_addr nh;			/* Next hop */
  struct iface *ifa;		/* Outgoing interface */
  struct top_hash_entry *ar;	/* Advertising router */
  u32 tag;
}
orta;

typedef struct ort
{
  struct fib_node fn;
  int dest;
#define ORT_UNDEF -1
#define ORT_ROUTER 1
#define ORT_NET 0
  orta n;
  orta o;
}
ort;

void ospf_rt_spf(struct proto_ospf *po);
void ospf_rt_initort(struct fib_node *fn);


#endif /* _BIRD_OSPF_RT_H_ */