Searched refs:nbr (Results 1 - 25 of 68) sorted by relevance

123

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/quagga/ospfd/
H A Dospf_neighbor.c46 /* Fill in the the 'key' as appropriate to retrieve the entry for nbr
52 ospf_nbr_key (struct ospf_interface *oi, struct ospf_neighbor *nbr, argument
60 key->u.prefix4 = nbr->router_id;
62 key->u.prefix4 = nbr->src;
69 struct ospf_neighbor *nbr; local
72 nbr = XCALLOC (MTYPE_OSPF_NEIGHBOR, sizeof (struct ospf_neighbor));
75 nbr->oi = oi;
78 nbr->state = NSM_Down;
81 nbr->v_inactivity = OSPF_IF_PARAM (oi, v_wait);
82 nbr
105 ospf_nbr_free(struct ospf_neighbor *nbr) argument
149 ospf_nbr_delete(struct ospf_neighbor *nbr) argument
252 struct ospf_neighbor *nbr; local
269 struct ospf_neighbor *nbr; local
294 struct ospf_neighbor *nbr; local
324 struct ospf_neighbor *nbr; local
344 struct ospf_neighbor *nbr; local
388 struct ospf_neighbor *nbr; local
433 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_nsm.c58 struct ospf_neighbor *nbr; local
60 nbr = THREAD_ARG (thread);
61 nbr->t_inactivity = NULL;
65 IF_NAME (nbr->oi), inet_ntoa (nbr->router_id));
67 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_InactivityTimer);
75 struct ospf_neighbor *nbr; local
77 nbr = THREAD_ARG (thread);
78 nbr->t_db_desc = NULL;
82 IF_NAME (nbr
104 nsm_timer_set(struct ospf_neighbor *nbr) argument
141 nsm_should_adj(struct ospf_neighbor *nbr) argument
162 nsm_packet_received(struct ospf_neighbor *nbr) argument
177 nsm_start(struct ospf_neighbor *nbr) argument
191 nsm_twoway_received(struct ospf_neighbor *nbr) argument
197 ospf_db_summary_count(struct ospf_neighbor *nbr) argument
203 ospf_db_summary_isempty(struct ospf_neighbor *nbr) argument
209 ospf_db_summary_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
244 ospf_db_summary_clear(struct ospf_neighbor *nbr) argument
270 nsm_negotiation_done(struct ospf_neighbor *nbr) argument
319 nsm_exchange_done(struct ospf_neighbor *nbr) argument
331 nsm_adj_ok(struct ospf_neighbor *nbr) argument
349 nsm_clear_adj(struct ospf_neighbor *nbr) argument
370 nsm_kill_nbr(struct ospf_neighbor *nbr) argument
595 nsm_notice_state_change(struct ospf_neighbor *nbr, int next_state, int event) argument
644 nsm_change_state(struct ospf_neighbor *nbr, int state) argument
791 struct ospf_neighbor *nbr; local
854 ospf_check_nbr_loading(struct ospf_neighbor *nbr) argument
[all...]
H A Dospf_flood.c234 ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr, argument
245 inet_ntoa (nbr->router_id),
246 LOOKUP (ospf_nsm_state_msg, nbr->state),
251 oi = nbr->oi;
282 lsa_ack_flag = ospf_flood_through (ospf, nbr, new);
306 ospf_ls_retransmit_delete_nbr_area (nbr->oi->area, current);
322 if (! (new = ospf_lsa_install (ospf, nbr->oi, new)))
328 ospf_flood_delayed_lsa_ack (nbr, new);
377 zlog_debug ("ospf_flood_through_interface(): considering nbr %s (%s)",
396 zlog_debug ("ospf_flood_through_interface(): nbr ad
548 struct ospf_neighbor *nbr; local
764 ospf_ls_request_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
781 ospf_ls_request_count(struct ospf_neighbor *nbr) argument
787 ospf_ls_request_isempty(struct ospf_neighbor *nbr) argument
794 ospf_ls_request_delete(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
812 ospf_ls_request_delete_all(struct ospf_neighbor *nbr) argument
821 ospf_ls_request_lookup(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
841 ospf_ls_retransmit_count(struct ospf_neighbor *nbr) argument
847 ospf_ls_retransmit_count_self(struct ospf_neighbor *nbr, int lsa_type) argument
853 ospf_ls_retransmit_isempty(struct ospf_neighbor *nbr) argument
860 ospf_ls_retransmit_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
890 ospf_ls_retransmit_delete(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
905 ospf_ls_retransmit_clear(struct ospf_neighbor *nbr) argument
929 ospf_ls_retransmit_lookup(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
939 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_ism.c53 struct ospf_neighbor *nbr, *max = NULL; local
57 for (ALL_LIST_ELEMENTS_RO (routers, node, nbr))
60 max = nbr;
63 if (max->priority < nbr->priority)
64 max = nbr;
65 else if (max->priority == nbr->priority)
66 if (IPV4_ADDR_CMP (&max->router_id, &nbr->router_id) < 0)
67 max = nbr;
79 struct ospf_neighbor *nbr, *dr = NULL, *bdr = NULL; local
84 for (ALL_LIST_ELEMENTS_RO (el_list, node, nbr))
117 struct ospf_neighbor *nbr, *bdr = NULL; local
169 struct ospf_neighbor *nbr; local
187 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_packet.c333 struct ospf_neighbor *nbr; local
347 nbr = ospf_nbr_lookup_by_routerid (oi->nbrs, &ospfh->router_id);
349 if (nbr && ntohl(nbr->crypt_seqnum) > ntohl(ospfh->u.crypt.crypt_seqnum))
354 ntohl(nbr->crypt_seqnum));
374 if (nbr)
375 nbr->crypt_seqnum = ospfh->u.crypt.crypt_seqnum;
445 struct ospf_neighbor *nbr; local
447 nbr = THREAD_ARG (thread);
448 nbr
461 ospf_ls_req_event(struct ospf_neighbor *nbr) argument
476 struct ospf_neighbor *nbr; local
815 struct ospf_neighbor *nbr; local
1033 ospf_db_desc_save_current(struct ospf_neighbor *nbr, struct ospf_db_desc *dd) argument
1043 ospf_db_desc_proc(struct stream *s, struct ospf_interface *oi, struct ospf_neighbor *nbr, struct ospf_db_desc *dd, u_int16_t size) argument
1174 ospf_db_desc_is_dup(struct ospf_db_desc *dd, struct ospf_neighbor *nbr) argument
1191 struct ospf_neighbor *nbr; local
1468 struct ospf_neighbor *nbr; local
1568 ospf_ls_upd_list_lsa(struct ospf_neighbor *nbr, struct stream *s, struct ospf_interface *oi, size_t size) argument
1709 struct ospf_neighbor *nbr; local
2081 struct ospf_neighbor *nbr; local
3058 struct ospf_neighbor *nbr; local
3126 ospf_make_db_desc(struct ospf_interface *oi, struct ospf_neighbor *nbr, struct stream *s) argument
3230 ospf_make_ls_req_func(struct stream *s, u_int16_t *length, unsigned long delta, struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
3254 ospf_make_ls_req(struct ospf_neighbor *nbr, struct stream *s) argument
3463 struct ospf_neighbor *nbr; local
3489 struct ospf_neighbor *nbr; local
3531 ospf_db_desc_send(struct ospf_neighbor *nbr) argument
3573 ospf_db_desc_resend(struct ospf_neighbor *nbr) argument
3588 ospf_ls_req_send(struct ospf_neighbor *nbr) argument
3632 ospf_ls_upd_send_lsa(struct ospf_neighbor *nbr, struct ospf_lsa *lsa, int flag) argument
3807 ospf_ls_upd_send(struct ospf_neighbor *nbr, struct list *update, int flag) argument
3901 ospf_ls_ack_send(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
3928 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_opaque.h117 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status),
133 extern void ospf_opaque_nsm_change (struct ospf_neighbor *nbr,
154 extern void ospf_opaque_adjust_lsreq (struct ospf_neighbor *nbr,
157 *nbr,
159 extern void ospf_opaque_ls_ack_received (struct ospf_neighbor *nbr,
H A Dospf_nsm.h61 (T) = thread_add_timer (master, (F), nbr, (V)); \
H A Dospf_opaque.c254 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status);
357 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status),
878 struct ospf_neighbor *nbr, int old_status)
885 (* functab->nsm_change_hook)(nbr, old_status);
1056 ospf_opaque_nsm_change (struct ospf_neighbor *nbr, int old_state) argument
1061 if ((top = oi_to_top (nbr->oi)) == NULL)
1064 if (old_state != NSM_Full && nbr->state == NSM_Full)
1066 if (CHECK_FLAG (nbr->options, OSPF_OPTION_O))
1076 ospf_opaque_lsa_originate_schedule (nbr->oi, NULL);
1080 if (old_state == NSM_Full && nbr
351 ospf_register_opaque_functab( u_char lsa_type, u_char opaque_type, int (* new_if_hook)(struct interface *ifp), int (* del_if_hook)(struct interface *ifp), void (* ism_change_hook)(struct ospf_interface *oi, int old_status), void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status), void (* config_write_router)(struct vty *vty), void (* config_write_if )(struct vty *vty, struct interface *ifp), void (* config_write_debug )(struct vty *vty), void (* show_opaque_info )(struct vty *vty, struct ospf_lsa *lsa), int (* lsa_originator)(void *arg), struct ospf_lsa *(* lsa_refresher )(struct ospf_lsa *lsa), int (* new_lsa_hook)(struct ospf_lsa *lsa), int (* del_lsa_hook)(struct ospf_lsa *lsa)) argument
877 opaque_lsa_nsm_change_callback(struct list *funclist, struct ospf_neighbor *nbr, int old_status) argument
2137 ospf_opaque_adjust_lsreq(struct ospf_neighbor *nbr, struct list *lsas) argument
2239 ospf_opaque_self_originated_lsa_received(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
2284 ospf_opaque_ls_ack_received(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
2430 struct ospf_neighbor *nbr; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/quagga/ospfd/
H A Dospf_neighbor.c46 /* Fill in the the 'key' as appropriate to retrieve the entry for nbr
52 ospf_nbr_key (struct ospf_interface *oi, struct ospf_neighbor *nbr, argument
60 key->u.prefix4 = nbr->router_id;
62 key->u.prefix4 = nbr->src;
69 struct ospf_neighbor *nbr; local
72 nbr = XCALLOC (MTYPE_OSPF_NEIGHBOR, sizeof (struct ospf_neighbor));
75 nbr->oi = oi;
78 nbr->state = NSM_Down;
81 nbr->v_inactivity = OSPF_IF_PARAM (oi, v_wait);
82 nbr
105 ospf_nbr_free(struct ospf_neighbor *nbr) argument
149 ospf_nbr_delete(struct ospf_neighbor *nbr) argument
252 struct ospf_neighbor *nbr; local
269 struct ospf_neighbor *nbr; local
294 struct ospf_neighbor *nbr; local
324 struct ospf_neighbor *nbr; local
344 struct ospf_neighbor *nbr; local
388 struct ospf_neighbor *nbr; local
433 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_nsm.c58 struct ospf_neighbor *nbr; local
60 nbr = THREAD_ARG (thread);
61 nbr->t_inactivity = NULL;
65 IF_NAME (nbr->oi), inet_ntoa (nbr->router_id));
67 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_InactivityTimer);
75 struct ospf_neighbor *nbr; local
77 nbr = THREAD_ARG (thread);
78 nbr->t_db_desc = NULL;
82 IF_NAME (nbr
104 nsm_timer_set(struct ospf_neighbor *nbr) argument
141 nsm_should_adj(struct ospf_neighbor *nbr) argument
162 nsm_packet_received(struct ospf_neighbor *nbr) argument
177 nsm_start(struct ospf_neighbor *nbr) argument
191 nsm_twoway_received(struct ospf_neighbor *nbr) argument
197 ospf_db_summary_count(struct ospf_neighbor *nbr) argument
203 ospf_db_summary_isempty(struct ospf_neighbor *nbr) argument
209 ospf_db_summary_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
244 ospf_db_summary_clear(struct ospf_neighbor *nbr) argument
270 nsm_negotiation_done(struct ospf_neighbor *nbr) argument
319 nsm_exchange_done(struct ospf_neighbor *nbr) argument
331 nsm_adj_ok(struct ospf_neighbor *nbr) argument
349 nsm_clear_adj(struct ospf_neighbor *nbr) argument
370 nsm_kill_nbr(struct ospf_neighbor *nbr) argument
595 nsm_notice_state_change(struct ospf_neighbor *nbr, int next_state, int event) argument
644 nsm_change_state(struct ospf_neighbor *nbr, int state) argument
791 struct ospf_neighbor *nbr; local
854 ospf_check_nbr_loading(struct ospf_neighbor *nbr) argument
[all...]
H A Dospf_flood.c234 ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr, argument
245 inet_ntoa (nbr->router_id),
246 LOOKUP (ospf_nsm_state_msg, nbr->state),
251 oi = nbr->oi;
282 lsa_ack_flag = ospf_flood_through (ospf, nbr, new);
306 ospf_ls_retransmit_delete_nbr_area (nbr->oi->area, current);
322 if (! (new = ospf_lsa_install (ospf, nbr->oi, new)))
328 ospf_flood_delayed_lsa_ack (nbr, new);
377 zlog_debug ("ospf_flood_through_interface(): considering nbr %s (%s)",
396 zlog_debug ("ospf_flood_through_interface(): nbr ad
548 struct ospf_neighbor *nbr; local
764 ospf_ls_request_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
781 ospf_ls_request_count(struct ospf_neighbor *nbr) argument
787 ospf_ls_request_isempty(struct ospf_neighbor *nbr) argument
794 ospf_ls_request_delete(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
812 ospf_ls_request_delete_all(struct ospf_neighbor *nbr) argument
821 ospf_ls_request_lookup(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
841 ospf_ls_retransmit_count(struct ospf_neighbor *nbr) argument
847 ospf_ls_retransmit_count_self(struct ospf_neighbor *nbr, int lsa_type) argument
853 ospf_ls_retransmit_isempty(struct ospf_neighbor *nbr) argument
860 ospf_ls_retransmit_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
890 ospf_ls_retransmit_delete(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
905 ospf_ls_retransmit_clear(struct ospf_neighbor *nbr) argument
929 ospf_ls_retransmit_lookup(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
939 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_ism.c53 struct ospf_neighbor *nbr, *max = NULL; local
57 for (ALL_LIST_ELEMENTS_RO (routers, node, nbr))
60 max = nbr;
63 if (max->priority < nbr->priority)
64 max = nbr;
65 else if (max->priority == nbr->priority)
66 if (IPV4_ADDR_CMP (&max->router_id, &nbr->router_id) < 0)
67 max = nbr;
79 struct ospf_neighbor *nbr, *dr = NULL, *bdr = NULL; local
84 for (ALL_LIST_ELEMENTS_RO (el_list, node, nbr))
117 struct ospf_neighbor *nbr, *bdr = NULL; local
169 struct ospf_neighbor *nbr; local
187 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_packet.c333 struct ospf_neighbor *nbr; local
347 nbr = ospf_nbr_lookup_by_routerid (oi->nbrs, &ospfh->router_id);
349 if (nbr && ntohl(nbr->crypt_seqnum) > ntohl(ospfh->u.crypt.crypt_seqnum))
354 ntohl(nbr->crypt_seqnum));
374 if (nbr)
375 nbr->crypt_seqnum = ospfh->u.crypt.crypt_seqnum;
445 struct ospf_neighbor *nbr; local
447 nbr = THREAD_ARG (thread);
448 nbr
461 ospf_ls_req_event(struct ospf_neighbor *nbr) argument
476 struct ospf_neighbor *nbr; local
815 struct ospf_neighbor *nbr; local
1033 ospf_db_desc_save_current(struct ospf_neighbor *nbr, struct ospf_db_desc *dd) argument
1043 ospf_db_desc_proc(struct stream *s, struct ospf_interface *oi, struct ospf_neighbor *nbr, struct ospf_db_desc *dd, u_int16_t size) argument
1174 ospf_db_desc_is_dup(struct ospf_db_desc *dd, struct ospf_neighbor *nbr) argument
1191 struct ospf_neighbor *nbr; local
1468 struct ospf_neighbor *nbr; local
1568 ospf_ls_upd_list_lsa(struct ospf_neighbor *nbr, struct stream *s, struct ospf_interface *oi, size_t size) argument
1709 struct ospf_neighbor *nbr; local
2081 struct ospf_neighbor *nbr; local
3058 struct ospf_neighbor *nbr; local
3126 ospf_make_db_desc(struct ospf_interface *oi, struct ospf_neighbor *nbr, struct stream *s) argument
3230 ospf_make_ls_req_func(struct stream *s, u_int16_t *length, unsigned long delta, struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
3254 ospf_make_ls_req(struct ospf_neighbor *nbr, struct stream *s) argument
3463 struct ospf_neighbor *nbr; local
3489 struct ospf_neighbor *nbr; local
3531 ospf_db_desc_send(struct ospf_neighbor *nbr) argument
3573 ospf_db_desc_resend(struct ospf_neighbor *nbr) argument
3588 ospf_ls_req_send(struct ospf_neighbor *nbr) argument
3632 ospf_ls_upd_send_lsa(struct ospf_neighbor *nbr, struct ospf_lsa *lsa, int flag) argument
3807 ospf_ls_upd_send(struct ospf_neighbor *nbr, struct list *update, int flag) argument
3901 ospf_ls_ack_send(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
3928 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_opaque.h117 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status),
133 extern void ospf_opaque_nsm_change (struct ospf_neighbor *nbr,
154 extern void ospf_opaque_adjust_lsreq (struct ospf_neighbor *nbr,
157 *nbr,
159 extern void ospf_opaque_ls_ack_received (struct ospf_neighbor *nbr,
H A Dospf_nsm.h61 (T) = thread_add_timer (master, (F), nbr, (V)); \
H A Dospf_opaque.c254 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status);
357 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status),
878 struct ospf_neighbor *nbr, int old_status)
885 (* functab->nsm_change_hook)(nbr, old_status);
1056 ospf_opaque_nsm_change (struct ospf_neighbor *nbr, int old_state) argument
1061 if ((top = oi_to_top (nbr->oi)) == NULL)
1064 if (old_state != NSM_Full && nbr->state == NSM_Full)
1066 if (CHECK_FLAG (nbr->options, OSPF_OPTION_O))
1076 ospf_opaque_lsa_originate_schedule (nbr->oi, NULL);
1080 if (old_state == NSM_Full && nbr
351 ospf_register_opaque_functab( u_char lsa_type, u_char opaque_type, int (* new_if_hook)(struct interface *ifp), int (* del_if_hook)(struct interface *ifp), void (* ism_change_hook)(struct ospf_interface *oi, int old_status), void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status), void (* config_write_router)(struct vty *vty), void (* config_write_if )(struct vty *vty, struct interface *ifp), void (* config_write_debug )(struct vty *vty), void (* show_opaque_info )(struct vty *vty, struct ospf_lsa *lsa), int (* lsa_originator)(void *arg), struct ospf_lsa *(* lsa_refresher )(struct ospf_lsa *lsa), int (* new_lsa_hook)(struct ospf_lsa *lsa), int (* del_lsa_hook)(struct ospf_lsa *lsa)) argument
877 opaque_lsa_nsm_change_callback(struct list *funclist, struct ospf_neighbor *nbr, int old_status) argument
2137 ospf_opaque_adjust_lsreq(struct ospf_neighbor *nbr, struct list *lsas) argument
2239 ospf_opaque_self_originated_lsa_received(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
2284 ospf_opaque_ls_ack_received(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
2430 struct ospf_neighbor *nbr; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/quagga/ospfd/
H A Dospf_neighbor.c46 /* Fill in the the 'key' as appropriate to retrieve the entry for nbr
52 ospf_nbr_key (struct ospf_interface *oi, struct ospf_neighbor *nbr, argument
60 key->u.prefix4 = nbr->router_id;
62 key->u.prefix4 = nbr->src;
69 struct ospf_neighbor *nbr; local
72 nbr = XCALLOC (MTYPE_OSPF_NEIGHBOR, sizeof (struct ospf_neighbor));
75 nbr->oi = oi;
78 nbr->state = NSM_Down;
81 nbr->v_inactivity = OSPF_IF_PARAM (oi, v_wait);
82 nbr
105 ospf_nbr_free(struct ospf_neighbor *nbr) argument
149 ospf_nbr_delete(struct ospf_neighbor *nbr) argument
252 struct ospf_neighbor *nbr; local
269 struct ospf_neighbor *nbr; local
294 struct ospf_neighbor *nbr; local
324 struct ospf_neighbor *nbr; local
344 struct ospf_neighbor *nbr; local
388 struct ospf_neighbor *nbr; local
433 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_nsm.c58 struct ospf_neighbor *nbr; local
60 nbr = THREAD_ARG (thread);
61 nbr->t_inactivity = NULL;
65 IF_NAME (nbr->oi), inet_ntoa (nbr->router_id));
67 OSPF_NSM_EVENT_SCHEDULE (nbr, NSM_InactivityTimer);
75 struct ospf_neighbor *nbr; local
77 nbr = THREAD_ARG (thread);
78 nbr->t_db_desc = NULL;
82 IF_NAME (nbr
104 nsm_timer_set(struct ospf_neighbor *nbr) argument
141 nsm_should_adj(struct ospf_neighbor *nbr) argument
162 nsm_packet_received(struct ospf_neighbor *nbr) argument
177 nsm_start(struct ospf_neighbor *nbr) argument
191 nsm_twoway_received(struct ospf_neighbor *nbr) argument
197 ospf_db_summary_count(struct ospf_neighbor *nbr) argument
203 ospf_db_summary_isempty(struct ospf_neighbor *nbr) argument
209 ospf_db_summary_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
244 ospf_db_summary_clear(struct ospf_neighbor *nbr) argument
270 nsm_negotiation_done(struct ospf_neighbor *nbr) argument
319 nsm_exchange_done(struct ospf_neighbor *nbr) argument
331 nsm_adj_ok(struct ospf_neighbor *nbr) argument
349 nsm_clear_adj(struct ospf_neighbor *nbr) argument
370 nsm_kill_nbr(struct ospf_neighbor *nbr) argument
595 nsm_notice_state_change(struct ospf_neighbor *nbr, int next_state, int event) argument
644 nsm_change_state(struct ospf_neighbor *nbr, int state) argument
791 struct ospf_neighbor *nbr; local
854 ospf_check_nbr_loading(struct ospf_neighbor *nbr) argument
[all...]
H A Dospf_flood.c234 ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr, argument
245 inet_ntoa (nbr->router_id),
246 LOOKUP (ospf_nsm_state_msg, nbr->state),
251 oi = nbr->oi;
282 lsa_ack_flag = ospf_flood_through (ospf, nbr, new);
306 ospf_ls_retransmit_delete_nbr_area (nbr->oi->area, current);
322 if (! (new = ospf_lsa_install (ospf, nbr->oi, new)))
328 ospf_flood_delayed_lsa_ack (nbr, new);
377 zlog_debug ("ospf_flood_through_interface(): considering nbr %s (%s)",
396 zlog_debug ("ospf_flood_through_interface(): nbr ad
548 struct ospf_neighbor *nbr; local
764 ospf_ls_request_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
781 ospf_ls_request_count(struct ospf_neighbor *nbr) argument
787 ospf_ls_request_isempty(struct ospf_neighbor *nbr) argument
794 ospf_ls_request_delete(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
812 ospf_ls_request_delete_all(struct ospf_neighbor *nbr) argument
821 ospf_ls_request_lookup(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
841 ospf_ls_retransmit_count(struct ospf_neighbor *nbr) argument
847 ospf_ls_retransmit_count_self(struct ospf_neighbor *nbr, int lsa_type) argument
853 ospf_ls_retransmit_isempty(struct ospf_neighbor *nbr) argument
860 ospf_ls_retransmit_add(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
890 ospf_ls_retransmit_delete(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
905 ospf_ls_retransmit_clear(struct ospf_neighbor *nbr) argument
929 ospf_ls_retransmit_lookup(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
939 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_ism.c53 struct ospf_neighbor *nbr, *max = NULL; local
57 for (ALL_LIST_ELEMENTS_RO (routers, node, nbr))
60 max = nbr;
63 if (max->priority < nbr->priority)
64 max = nbr;
65 else if (max->priority == nbr->priority)
66 if (IPV4_ADDR_CMP (&max->router_id, &nbr->router_id) < 0)
67 max = nbr;
79 struct ospf_neighbor *nbr, *dr = NULL, *bdr = NULL; local
84 for (ALL_LIST_ELEMENTS_RO (el_list, node, nbr))
117 struct ospf_neighbor *nbr, *bdr = NULL; local
169 struct ospf_neighbor *nbr; local
187 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_packet.c333 struct ospf_neighbor *nbr; local
347 nbr = ospf_nbr_lookup_by_routerid (oi->nbrs, &ospfh->router_id);
349 if (nbr && ntohl(nbr->crypt_seqnum) > ntohl(ospfh->u.crypt.crypt_seqnum))
354 ntohl(nbr->crypt_seqnum));
374 if (nbr)
375 nbr->crypt_seqnum = ospfh->u.crypt.crypt_seqnum;
445 struct ospf_neighbor *nbr; local
447 nbr = THREAD_ARG (thread);
448 nbr
461 ospf_ls_req_event(struct ospf_neighbor *nbr) argument
476 struct ospf_neighbor *nbr; local
815 struct ospf_neighbor *nbr; local
1033 ospf_db_desc_save_current(struct ospf_neighbor *nbr, struct ospf_db_desc *dd) argument
1043 ospf_db_desc_proc(struct stream *s, struct ospf_interface *oi, struct ospf_neighbor *nbr, struct ospf_db_desc *dd, u_int16_t size) argument
1174 ospf_db_desc_is_dup(struct ospf_db_desc *dd, struct ospf_neighbor *nbr) argument
1191 struct ospf_neighbor *nbr; local
1468 struct ospf_neighbor *nbr; local
1568 ospf_ls_upd_list_lsa(struct ospf_neighbor *nbr, struct stream *s, struct ospf_interface *oi, size_t size) argument
1709 struct ospf_neighbor *nbr; local
2081 struct ospf_neighbor *nbr; local
3058 struct ospf_neighbor *nbr; local
3126 ospf_make_db_desc(struct ospf_interface *oi, struct ospf_neighbor *nbr, struct stream *s) argument
3230 ospf_make_ls_req_func(struct stream *s, u_int16_t *length, unsigned long delta, struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
3254 ospf_make_ls_req(struct ospf_neighbor *nbr, struct stream *s) argument
3463 struct ospf_neighbor *nbr; local
3489 struct ospf_neighbor *nbr; local
3531 ospf_db_desc_send(struct ospf_neighbor *nbr) argument
3573 ospf_db_desc_resend(struct ospf_neighbor *nbr) argument
3588 ospf_ls_req_send(struct ospf_neighbor *nbr) argument
3632 ospf_ls_upd_send_lsa(struct ospf_neighbor *nbr, struct ospf_lsa *lsa, int flag) argument
3807 ospf_ls_upd_send(struct ospf_neighbor *nbr, struct list *update, int flag) argument
3901 ospf_ls_ack_send(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) argument
3928 struct ospf_neighbor *nbr; local
[all...]
H A Dospf_opaque.h117 void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status),
133 extern void ospf_opaque_nsm_change (struct ospf_neighbor *nbr,
154 extern void ospf_opaque_adjust_lsreq (struct ospf_neighbor *nbr,
157 *nbr,
159 extern void ospf_opaque_ls_ack_received (struct ospf_neighbor *nbr,
H A Dospf_nsm.h61 (T) = thread_add_timer (master, (F), nbr, (V)); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Ddebugport.c16 unsigned char nbr; member in struct:dbg_port
111 if (p->nbr == 1)
113 else if (p->nbr == 2)
115 else if (p->nbr == 3)
118 else if (p->nbr == 4)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/cris/arch-v32/kernel/
H A Ddebugport.c16 unsigned char nbr; member in struct:dbg_port
111 if (p->nbr == 1)
113 else if (p->nbr == 2)
115 else if (p->nbr == 3)
118 else if (p->nbr == 4)

Completed in 197 milliseconds

123