ospf_lsdb.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:3k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF LSDB support.
  3.  * Copyright (C) 1999, 2000 Alex Zinin, Kunihiro Ishiguro, Toshiaki Takada
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  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.
  11.  *
  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.
  16.  *
  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.
  21.  */
  22. #ifndef _ZEBRA_OSPF_LSDB_H
  23. #define _ZEBRA_OSPF_LSDB_H
  24. /* OSPF LSDB structure. */
  25. struct ospf_lsdb
  26. {
  27.   struct
  28.   {
  29.     unsigned long count;
  30.     unsigned long count_self;
  31.     struct route_table *db;
  32.   } type[OSPF_MAX_LSA];
  33.   unsigned long total;
  34. #define MONITOR_LSDB_CHANGE 1 /* XXX */
  35. #ifdef MONITOR_LSDB_CHANGE
  36.   /* Hooks for callback functions to catch every add/del event. */
  37.   int (* new_lsa_hook)(struct ospf_lsa *);
  38.   int (* del_lsa_hook)(struct ospf_lsa *);
  39. #endif /* MONITOR_LSDB_CHANGE */
  40. };
  41. /* Macros. */
  42. #define LSDB_LOOP(T,N,L)                                                      
  43.   if ((T) != NULL)                                                            
  44.   for ((N) = route_top ((T)); ((N)); ((N)) = route_next ((N)))                
  45.     if (((L) = (N)->info))
  46. #define ROUTER_LSDB(A)       ((A)->lsdb->type[OSPF_ROUTER_LSA].db)
  47. #define NETWORK_LSDB(A)      ((A)->lsdb->type[OSPF_NETWORK_LSA].db)
  48. #define SUMMARY_LSDB(A)      ((A)->lsdb->type[OSPF_SUMMARY_LSA].db)
  49. #define ASBR_SUMMARY_LSDB(A) ((A)->lsdb->type[OSPF_ASBR_SUMMARY_LSA].db)
  50. #define EXTERNAL_LSDB(O)     ((O)->lsdb->type[OSPF_AS_EXTERNAL_LSA].db)
  51. #define NSSA_LSDB(A)         ((A)->lsdb->type[OSPF_AS_NSSA_LSA].db)
  52. #define OPAQUE_LINK_LSDB(A)  ((A)->lsdb->type[OSPF_OPAQUE_LINK_LSA].db)
  53. #define OPAQUE_AREA_LSDB(A)  ((A)->lsdb->type[OSPF_OPAQUE_AREA_LSA].db)
  54. #define OPAQUE_AS_LSDB(O)    ((O)->lsdb->type[OSPF_OPAQUE_AS_LSA].db)
  55. #define AREA_LSDB(A,T)       ((A)->lsdb->type[(T)].db)
  56. #define AS_LSDB(O,T)         ((O)->lsdb->type[(T)].db)
  57. /* OSPF LSDB related functions. */
  58. struct ospf_lsdb *ospf_lsdb_new ();
  59. void ospf_lsdb_init (struct ospf_lsdb *);
  60. void ospf_lsdb_free (struct ospf_lsdb *);
  61. void ospf_lsdb_cleanup (struct ospf_lsdb *);
  62. void ospf_lsdb_add (struct ospf_lsdb *, struct ospf_lsa *);
  63. void ospf_lsdb_delete (struct ospf_lsdb *, struct ospf_lsa *);
  64. void ospf_lsdb_delete_all (struct ospf_lsdb *);
  65. struct ospf_lsa *ospf_lsdb_lookup (struct ospf_lsdb *, struct ospf_lsa *);
  66. struct ospf_lsa *ospf_lsdb_lookup_by_id (struct ospf_lsdb *, u_char,
  67. struct in_addr, struct in_addr);
  68. struct ospf_lsa *ospf_lsdb_lookup_by_id_next (struct ospf_lsdb *, u_char,
  69.      struct in_addr, struct in_addr,
  70.      int);
  71. unsigned long ospf_lsdb_count_all (struct ospf_lsdb *);
  72. unsigned long ospf_lsdb_count (struct ospf_lsdb *, int);
  73. unsigned long ospf_lsdb_count_self (struct ospf_lsdb *, int);
  74. unsigned long ospf_lsdb_isempty (struct ospf_lsdb *);
  75. #endif /* _ZEBRA_OSPF_LSDB_H */