2000-03-30 20:00:42 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2004-06-04 21:05:43 +00:00
|
|
|
* (c) 2000--2004 Ondrej Filip <feela@network.cz>
|
2000-03-30 20:00:42 +00:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_OSPF_LSUPD_H_
|
|
|
|
#define _BIRD_OSPF_LSUPD_H_
|
|
|
|
|
2012-08-05 20:32:06 +00:00
|
|
|
void ospf_dump_lsahdr(struct proto_ospf *po, struct ospf_lsa_header *lsa_n);
|
|
|
|
void ospf_dump_common(struct proto_ospf *po, struct ospf_packet *pkt);
|
2013-04-15 23:14:57 +00:00
|
|
|
void ospf_lsupd_receive(struct ospf_packet *ps_i, struct ospf_iface *ifa, struct ospf_neighbor *n);
|
|
|
|
int ospf_lsupd_flood(struct proto_ospf *po, struct top_hash_entry *en, struct ospf_neighbor *from);
|
|
|
|
int ospf_lsupd_send(struct ospf_neighbor *n, struct top_hash_entry **lsa_list, unsigned lsa_count);
|
2009-08-21 07:27:52 +00:00
|
|
|
|
2000-03-30 20:00:42 +00:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_LSUPD_H_ */
|