Merge branch 'Teaman-ND' into Teaman-RT
[tomato.git] / release / src / router / zebra / ospfd / ospf_lsdb.h
blob302dddea656186621217063798c595d63a80037f
1 /*
2 * OSPF LSDB support.
3 * Copyright (C) 1999, 2000 Alex Zinin, Kunihiro Ishiguro, Toshiaki Takada
5 * This file is part of GNU Zebra.
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
23 #ifndef _ZEBRA_OSPF_LSDB_H
24 #define _ZEBRA_OSPF_LSDB_H
26 /* OSPF LSDB structure. */
27 struct ospf_lsdb
29 struct
31 unsigned long count;
32 unsigned long count_self;
33 struct route_table *db;
34 } type[OSPF_MAX_LSA];
35 unsigned long total;
36 #define MONITOR_LSDB_CHANGE 1 /* XXX */
37 #ifdef MONITOR_LSDB_CHANGE
38 /* Hooks for callback functions to catch every add/del event. */
39 int (* new_lsa_hook)(struct ospf_lsa *);
40 int (* del_lsa_hook)(struct ospf_lsa *);
41 #endif /* MONITOR_LSDB_CHANGE */
44 /* Macros. */
45 #define LSDB_LOOP(T,N,L) \
46 if ((T) != NULL) \
47 for ((N) = route_top ((T)); ((N)); ((N)) = route_next ((N))) \
48 if (((L) = (N)->info))
50 #define ROUTER_LSDB(A) ((A)->lsdb->type[OSPF_ROUTER_LSA].db)
51 #define NETWORK_LSDB(A) ((A)->lsdb->type[OSPF_NETWORK_LSA].db)
52 #define SUMMARY_LSDB(A) ((A)->lsdb->type[OSPF_SUMMARY_LSA].db)
53 #define ASBR_SUMMARY_LSDB(A) ((A)->lsdb->type[OSPF_ASBR_SUMMARY_LSA].db)
54 #define EXTERNAL_LSDB(O) ((O)->lsdb->type[OSPF_AS_EXTERNAL_LSA].db)
55 #define NSSA_LSDB(A) ((A)->lsdb->type[OSPF_AS_NSSA_LSA].db)
56 #define OPAQUE_LINK_LSDB(A) ((A)->lsdb->type[OSPF_OPAQUE_LINK_LSA].db)
57 #define OPAQUE_AREA_LSDB(A) ((A)->lsdb->type[OSPF_OPAQUE_AREA_LSA].db)
58 #define OPAQUE_AS_LSDB(O) ((O)->lsdb->type[OSPF_OPAQUE_AS_LSA].db)
60 #define AREA_LSDB(A,T) ((A)->lsdb->type[(T)].db)
61 #define AS_LSDB(O,T) ((O)->lsdb->type[(T)].db)
63 /* OSPF LSDB related functions. */
64 struct ospf_lsdb *ospf_lsdb_new ();
65 void ospf_lsdb_init (struct ospf_lsdb *);
66 void ospf_lsdb_free (struct ospf_lsdb *);
67 void ospf_lsdb_cleanup (struct ospf_lsdb *);
68 void ospf_lsdb_add (struct ospf_lsdb *, struct ospf_lsa *);
69 void ospf_lsdb_delete (struct ospf_lsdb *, struct ospf_lsa *);
70 void ospf_lsdb_delete_all (struct ospf_lsdb *);
71 struct ospf_lsa *ospf_lsdb_lookup (struct ospf_lsdb *, struct ospf_lsa *);
72 struct ospf_lsa *ospf_lsdb_lookup_by_id (struct ospf_lsdb *, u_char,
73 struct in_addr, struct in_addr);
74 struct ospf_lsa *ospf_lsdb_lookup_by_id_next (struct ospf_lsdb *, u_char,
75 struct in_addr, struct in_addr,
76 int);
77 unsigned long ospf_lsdb_count_all (struct ospf_lsdb *);
78 unsigned long ospf_lsdb_count (struct ospf_lsdb *, int);
79 unsigned long ospf_lsdb_count_self (struct ospf_lsdb *, int);
80 unsigned long ospf_lsdb_isempty (struct ospf_lsdb *);
82 #endif /* _ZEBRA_OSPF_LSDB_H */