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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2003 Yasuhiro Ohara
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the 
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  19.  * Boston, MA 02111-1307, USA.  
  20.  */
  21. #ifndef OSPF6_NEIGHBOR_H
  22. #define OSPF6_NEIGHBOR_H
  23. /* Debug option */
  24. extern unsigned char conf_debug_ospf6_neighbor;
  25. #define OSPF6_DEBUG_NEIGHBOR_STATE   0x01
  26. #define OSPF6_DEBUG_NEIGHBOR_EVENT   0x02
  27. #define OSPF6_DEBUG_NEIGHBOR_ON(level) 
  28.   (conf_debug_ospf6_neighbor |= (level))
  29. #define OSPF6_DEBUG_NEIGHBOR_OFF(level) 
  30.   (conf_debug_ospf6_neighbor &= ~(level))
  31. #define IS_OSPF6_DEBUG_NEIGHBOR(level) 
  32.   (conf_debug_ospf6_neighbor & OSPF6_DEBUG_NEIGHBOR_ ## level)
  33. /* Neighbor structure */
  34. struct ospf6_neighbor
  35. {
  36.   /* Neighbor Router ID String */
  37.   char name[32];
  38.   /* OSPFv3 Interface this neighbor belongs to */
  39.   struct ospf6_interface *ospf6_if;
  40.   /* Neighbor state */
  41.   u_char state;
  42.   /* timestamp of last changing state */
  43.   struct timeval last_changed;
  44.   /* Neighbor Router ID */
  45.   u_int32_t router_id;
  46.   /* Neighbor Interface ID */
  47.   u_int32_t ifindex;
  48.   /* Router Priority of this neighbor */
  49.   u_char priority;
  50.   u_int32_t drouter;
  51.   u_int32_t bdrouter;
  52.   u_int32_t prev_drouter;
  53.   u_int32_t prev_bdrouter;
  54.   /* Options field (Capability) */
  55.   char options[3];
  56.   /* IPaddr of I/F on our side link */
  57.   struct in6_addr linklocal_addr;
  58.   /* For Database Exchange */
  59.   u_char               dbdesc_bits;
  60.   u_int32_t            dbdesc_seqnum;
  61.   /* Last received Database Description packet */
  62.   struct ospf6_dbdesc  dbdesc_last;
  63.   /* LS-list */
  64.   struct ospf6_lsdb *summary_list;
  65.   struct ospf6_lsdb *request_list;
  66.   struct ospf6_lsdb *retrans_list;
  67.   /* LSA list for message transmission */
  68.   struct ospf6_lsdb *dbdesc_list;
  69.   struct ospf6_lsdb *lsreq_list;
  70.   struct ospf6_lsdb *lsupdate_list;
  71.   struct ospf6_lsdb *lsack_list;
  72.   /* Inactivity timer */
  73.   struct thread *inactivity_timer;
  74.   /* Thread for sending message */
  75.   struct thread *thread_send_dbdesc;
  76.   struct thread *thread_send_lsreq;
  77.   struct thread *thread_send_lsupdate;
  78.   struct thread *thread_send_lsack;
  79. };
  80. /* Neighbor state */
  81. #define OSPF6_NEIGHBOR_DOWN     1
  82. #define OSPF6_NEIGHBOR_ATTEMPT  2
  83. #define OSPF6_NEIGHBOR_INIT     3
  84. #define OSPF6_NEIGHBOR_TWOWAY   4
  85. #define OSPF6_NEIGHBOR_EXSTART  5
  86. #define OSPF6_NEIGHBOR_EXCHANGE 6
  87. #define OSPF6_NEIGHBOR_LOADING  7
  88. #define OSPF6_NEIGHBOR_FULL     8
  89. extern char *ospf6_neighbor_state_str[];
  90. /* Function Prototypes */
  91. int ospf6_neighbor_cmp (void *va, void *vb);
  92. void ospf6_neighbor_dbex_init (struct ospf6_neighbor *on);
  93. struct ospf6_neighbor *ospf6_neighbor_lookup (u_int32_t,
  94.                                               struct ospf6_interface *);
  95. struct ospf6_neighbor *ospf6_neighbor_create (u_int32_t,
  96.                                               struct ospf6_interface *);
  97. void ospf6_neighbor_delete (struct ospf6_neighbor *);
  98. /* Neighbor event */
  99. int hello_received (struct thread *);
  100. int twoway_received (struct thread *);
  101. int negotiation_done (struct thread *);
  102. int exchange_done (struct thread *);
  103. int loading_done (struct thread *);
  104. int adj_ok (struct thread *);
  105. int seqnumber_mismatch (struct thread *);
  106. int bad_lsreq (struct thread *);
  107. int oneway_received (struct thread *);
  108. int inactivity_timer (struct thread *);
  109. void ospf6_neighbor_init ();
  110. int config_write_ospf6_debug_neighbor (struct vty *vty);
  111. void install_element_ospf6_debug_neighbor ();
  112. #endif /* OSPF6_NEIGHBOR_H */