• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/

Lines Matching defs:lsa

92 ospf6_neighbor_summary_add (struct ospf6_lsa *lsa,
100 zlog_info (" Add %s", lsa->str);
103 ospf6_lsa_age_current (lsa);
104 summary = ospf6_lsa_summary_create (lsa->header);
109 ospf6_neighbor_summary_remove (struct ospf6_lsa *lsa,
117 zlog_info (" Remove %s", lsa->str);
120 summary = ospf6_lsdb_lookup_lsdb (lsa->header->type, lsa->header->id,
121 lsa->header->adv_router, nei->summary_list);
126 ospf6_neighbor_request_add (struct ospf6_lsa *lsa,
134 zlog_info (" Add %s", lsa->str);
137 ospf6_lsa_age_current (lsa);
138 summary = ospf6_lsa_summary_create (lsa->header);
143 ospf6_neighbor_request_remove (struct ospf6_lsa *lsa,
151 zlog_info (" Remove %s", lsa->str);
154 summary = ospf6_lsdb_lookup_lsdb (lsa->header->type, lsa->header->id,
155 lsa->header->adv_router, nei->request_list);
160 ospf6_neighbor_retrans_add (struct ospf6_lsa *lsa,
166 zlog_info (" Add %s", lsa->str);
169 ospf6_lsdb_add (lsa, nei->retrans_list);
173 ospf6_neighbor_retrans_remove (struct ospf6_lsa *lsa,
179 zlog_info (" Remove %s", lsa->str);
182 ospf6_lsdb_remove (lsa, nei->retrans_list);
186 ospf6_neighbor_dbdesc_add (struct ospf6_lsa *lsa,
192 zlog_info (" Add %s", lsa->str);
195 ospf6_lsdb_add (lsa, nei->dbdesc_list);
199 ospf6_neighbor_dbdesc_remove (struct ospf6_lsa *lsa,
205 zlog_info (" Remove %s", lsa->str);
208 ospf6_lsdb_remove (lsa, nei->dbdesc_list);
225 if (IS_LSA_MAXAGE (node.lsa))
226 ospf6_neighbor_retrans_add (node.lsa, nei);
228 ospf6_neighbor_summary_add (node.lsa, nei);
235 if (IS_LSA_MAXAGE (node.lsa))
236 ospf6_neighbor_retrans_add (node.lsa, nei);
238 ospf6_neighbor_summary_add (node.lsa, nei);
245 if (IS_LSA_MAXAGE (node.lsa))
246 ospf6_neighbor_retrans_add (node.lsa, nei);
248 ospf6_neighbor_summary_add (node.lsa, nei);
525 struct ospf6_lsa *lsa;
560 lsa = node.lsa;
561 ospf6_lsa_age_current (lsa);
563 ospf6_lsa_type_string (lsa->header->type, type,
565 inet_ntop (AF_INET, &lsa->header->id, id, sizeof (id));
566 inet_ntop (AF_INET, &lsa->header->adv_router, adv_router,
568 age = ntohs (lsa->header->age);
569 seqnum = ntohl (lsa->header->seqnum);
570 cksum = ntohs (lsa->header->checksum);
571 len = ntohs (lsa->header->length);