]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_neighbor.h
*: nuke ^L (page feed)
[mirror_frr.git] / ospf6d / ospf6_neighbor.h
CommitLineData
718e3744 1/*
508e53e2 2 * Copyright (C) 2003 Yasuhiro Ohara
718e3744 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
22#ifndef OSPF6_NEIGHBOR_H
23#define OSPF6_NEIGHBOR_H
24
508e53e2 25/* Debug option */
26extern unsigned char conf_debug_ospf6_neighbor;
27#define OSPF6_DEBUG_NEIGHBOR_STATE 0x01
28#define OSPF6_DEBUG_NEIGHBOR_EVENT 0x02
29#define OSPF6_DEBUG_NEIGHBOR_ON(level) \
30 (conf_debug_ospf6_neighbor |= (level))
31#define OSPF6_DEBUG_NEIGHBOR_OFF(level) \
32 (conf_debug_ospf6_neighbor &= ~(level))
33#define IS_OSPF6_DEBUG_NEIGHBOR(level) \
34 (conf_debug_ospf6_neighbor & OSPF6_DEBUG_NEIGHBOR_ ## level)
35
718e3744 36/* Neighbor structure */
37struct ospf6_neighbor
38{
39 /* Neighbor Router ID String */
508e53e2 40 char name[32];
718e3744 41
42 /* OSPFv3 Interface this neighbor belongs to */
508e53e2 43 struct ospf6_interface *ospf6_if;
718e3744 44
45 /* Neighbor state */
46 u_char state;
508e53e2 47
48 /* timestamp of last changing state */
061bc735 49 u_int32_t state_change;
718e3744 50 struct timeval last_changed;
51
52 /* Neighbor Router ID */
53 u_int32_t router_id;
54
508e53e2 55 /* Neighbor Interface ID */
56 u_int32_t ifindex;
57
718e3744 58 /* Router Priority of this neighbor */
59 u_char priority;
60
508e53e2 61 u_int32_t drouter;
62 u_int32_t bdrouter;
63 u_int32_t prev_drouter;
64 u_int32_t prev_bdrouter;
718e3744 65
508e53e2 66 /* Options field (Capability) */
718e3744 67 char options[3];
68
69 /* IPaddr of I/F on our side link */
508e53e2 70 struct in6_addr linklocal_addr;
718e3744 71
72 /* For Database Exchange */
73 u_char dbdesc_bits;
74 u_int32_t dbdesc_seqnum;
508e53e2 75 /* Last received Database Description packet */
76 struct ospf6_dbdesc dbdesc_last;
718e3744 77
508e53e2 78 /* LS-list */
79 struct ospf6_lsdb *summary_list;
80 struct ospf6_lsdb *request_list;
81 struct ospf6_lsdb *retrans_list;
718e3744 82
508e53e2 83 /* LSA list for message transmission */
84 struct ospf6_lsdb *dbdesc_list;
85 struct ospf6_lsdb *lsreq_list;
86 struct ospf6_lsdb *lsupdate_list;
87 struct ospf6_lsdb *lsack_list;
718e3744 88
eb82e9ee
DD
89 struct ospf6_lsa *last_ls_req;
90
508e53e2 91 /* Inactivity timer */
718e3744 92 struct thread *inactivity_timer;
93
508e53e2 94 /* Thread for sending message */
718e3744 95 struct thread *thread_send_dbdesc;
718e3744 96 struct thread *thread_send_lsreq;
508e53e2 97 struct thread *thread_send_lsupdate;
98 struct thread *thread_send_lsack;
718e3744 99};
100
508e53e2 101/* Neighbor state */
102#define OSPF6_NEIGHBOR_DOWN 1
103#define OSPF6_NEIGHBOR_ATTEMPT 2
104#define OSPF6_NEIGHBOR_INIT 3
105#define OSPF6_NEIGHBOR_TWOWAY 4
106#define OSPF6_NEIGHBOR_EXSTART 5
107#define OSPF6_NEIGHBOR_EXCHANGE 6
108#define OSPF6_NEIGHBOR_LOADING 7
109#define OSPF6_NEIGHBOR_FULL 8
110
3d35ca48
DD
111/* Neighbor Events */
112#define OSPF6_NEIGHBOR_EVENT_NO_EVENT 0
113#define OSPF6_NEIGHBOR_EVENT_HELLO_RCVD 1
114#define OSPF6_NEIGHBOR_EVENT_TWOWAY_RCVD 2
115#define OSPF6_NEIGHBOR_EVENT_NEGOTIATION_DONE 3
116#define OSPF6_NEIGHBOR_EVENT_EXCHANGE_DONE 4
117#define OSPF6_NEIGHBOR_EVENT_LOADING_DONE 5
118#define OSPF6_NEIGHBOR_EVENT_ADJ_OK 6
119#define OSPF6_NEIGHBOR_EVENT_SEQNUMBER_MISMATCH 7
120#define OSPF6_NEIGHBOR_EVENT_BAD_LSREQ 8
121#define OSPF6_NEIGHBOR_EVENT_ONEWAY_RCVD 9
122#define OSPF6_NEIGHBOR_EVENT_INACTIVITY_TIMER 10
123#define OSPF6_NEIGHBOR_EVENT_MAX_EVENT 11
124
125static const char *ospf6_neighbor_event_str[] =
126 {
127 "NoEvent",
128 "HelloReceived",
129 "2-WayReceived",
130 "NegotiationDone",
131 "ExchangeDone",
132 "LoadingDone",
133 "AdjOK?",
134 "SeqNumberMismatch",
135 "BadLSReq",
136 "1-WayReceived",
137 "InactivityTimer",
138 };
139
140static const char *ospf6_neighbor_event_string (int event)
141{
142 #define OSPF6_NEIGHBOR_UNKNOWN_EVENT_STRING "UnknownEvent"
143
144 if (event < OSPF6_NEIGHBOR_EVENT_MAX_EVENT)
145 return ospf6_neighbor_event_str[event];
146 return OSPF6_NEIGHBOR_UNKNOWN_EVENT_STRING;
147}
148
6ac29a51 149extern const char *ospf6_neighbor_state_str[];
718e3744 150
6b0655a2 151
718e3744 152/* Function Prototypes */
508e53e2 153int ospf6_neighbor_cmp (void *va, void *vb);
154void ospf6_neighbor_dbex_init (struct ospf6_neighbor *on);
155
156struct ospf6_neighbor *ospf6_neighbor_lookup (u_int32_t,
157 struct ospf6_interface *);
158struct ospf6_neighbor *ospf6_neighbor_create (u_int32_t,
159 struct ospf6_interface *);
160void ospf6_neighbor_delete (struct ospf6_neighbor *);
161
162/* Neighbor event */
6ac29a51
PJ
163extern int hello_received (struct thread *);
164extern int twoway_received (struct thread *);
165extern int negotiation_done (struct thread *);
166extern int exchange_done (struct thread *);
167extern int loading_done (struct thread *);
168extern int adj_ok (struct thread *);
169extern int seqnumber_mismatch (struct thread *);
170extern int bad_lsreq (struct thread *);
171extern int oneway_received (struct thread *);
172extern int inactivity_timer (struct thread *);
eb82e9ee 173extern void ospf6_check_nbr_loading (struct ospf6_neighbor *);
6ac29a51
PJ
174
175extern void ospf6_neighbor_init (void);
176extern int config_write_ospf6_debug_neighbor (struct vty *vty);
177extern void install_element_ospf6_debug_neighbor (void);
718e3744 178
179#endif /* OSPF6_NEIGHBOR_H */