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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF Neighbor functions.
  3.  * Copyright (C) 1999, 2000 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
  8.  * it under the terms of the GNU General Public License as published
  9.  * by the Free Software Foundation; either version 2, or (at your
  10.  * option) any 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
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22. #ifndef _ZEBRA_OSPF_NEIGHBOR_H
  23. #define _ZEBRA_OSPF_NEIGHBOR_H
  24. /* Neighbor Data Structure */
  25. struct ospf_neighbor
  26. {
  27.   /* This neighbor's parent ospf interface. */
  28.   struct ospf_interface *oi;
  29.   /* OSPF neighbor Information */
  30.   u_char state; /* NSM status. */
  31.   u_char dd_flags; /* DD bit flags. */
  32.   u_int32_t dd_seqnum; /* DD Sequence Number. */
  33.   /* Neighbor Information from Hello. */
  34.   struct prefix address; /* Neighbor Interface Address. */
  35.   struct in_addr src; /* Src address. */
  36.   struct in_addr router_id; /* Router ID. */
  37.   u_char options; /* Options. */
  38.   int priority; /* Router Priority. */
  39.   struct in_addr d_router; /* Designated Router. */
  40.   struct in_addr bd_router; /* Backup Designated Router. */
  41.   /* Last sent Database Description packet. */
  42.   struct ospf_packet *last_send;
  43.   /* Timestemp when last Database Description packet was sent */
  44.   struct timeval last_send_ts;
  45.   /* Last received Databse Description packet. */
  46.   struct
  47.   {
  48.     u_char options;
  49.     u_char flags;
  50.     u_int32_t dd_seqnum;
  51.   } last_recv;
  52.   /* LSA data. */
  53.   struct ospf_lsdb ls_rxmt;
  54.   struct ospf_lsdb db_sum;
  55.   struct ospf_lsdb ls_req;
  56.   struct ospf_lsa *ls_req_last;
  57.   u_int32_t crypt_seqnum;           /* Cryptographic Sequence Number. */
  58.   /* Timer values. */
  59.   u_int32_t v_inactivity;
  60.   u_int32_t v_db_desc;
  61.   u_int32_t v_ls_req;
  62.   u_int32_t v_ls_upd;
  63.   /* Threads. */
  64.   struct thread *t_inactivity;
  65.   struct thread *t_db_desc;
  66.   struct thread *t_ls_req;
  67.   struct thread *t_ls_upd;
  68.   struct thread *t_hello_reply;
  69.   /* Statistics Field */
  70.   u_int32_t state_change;
  71.   struct ospf_nbr_nbma *nbr_nbma;
  72. };
  73. /* Macros. */
  74. #define NBR_IS_DR(n) IPV4_ADDR_SAME (&n->address.u.prefix4, &n->d_router)
  75. #define NBR_IS_BDR(n)   IPV4_ADDR_SAME (&n->address.u.prefix4, &n->bd_router)
  76. /* Prototypes. */
  77. struct ospf_neighbor *ospf_nbr_new (struct ospf_interface *);
  78. void ospf_nbr_free (struct ospf_neighbor *);
  79. void ospf_nbr_delete (struct ospf_neighbor *);
  80. int ospf_nbr_bidirectional (struct in_addr *, struct in_addr *, int);
  81. void ospf_nbr_add_self (struct ospf_interface *);
  82. int ospf_nbr_count (struct ospf_interface *, int);
  83. #ifdef HAVE_OPAQUE_LSA
  84. int ospf_nbr_count_opaque_capable (struct ospf_interface *);
  85. #endif /* HAVE_OPAQUE_LSA */
  86. struct ospf_neighbor *ospf_nbr_lookup_by_addr (struct route_table *,
  87.        struct in_addr *);
  88. struct ospf_neighbor *ospf_nbr_lookup_by_routerid (struct route_table *,
  89.    struct in_addr *);
  90. void ospf_renegotiate_optional_capabilities (struct ospf *top);
  91. #endif /* _ZEBRA_OSPF_NEIGHBOR_H */