diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-04 21:05:43 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-04 21:05:43 +0000 |
commit | 6f3203fabf30b0e5ca7d41b4550efbc5df0b421a (patch) | |
tree | fca231a3f7c5597478ec5e089332dc7aef68cf48 /proto/ospf/lsupd.h | |
parent | 9b7de4c4d13a5701aac446627672e65fce9e1a9d (diff) |
cleanup in lsupd.c, indenting, "struct proto" removed...
Diffstat (limited to 'proto/ospf/lsupd.h')
-rw-r--r-- | proto/ospf/lsupd.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/proto/ospf/lsupd.h b/proto/ospf/lsupd.h index 5bbc97ab..8c046759 100644 --- a/proto/ospf/lsupd.h +++ b/proto/ospf/lsupd.h @@ -1,7 +1,7 @@ /* * BIRD -- OSPF * - * (c) 2000 Ondrej Filip <feela@network.cz> + * (c) 2000--2004 Ondrej Filip <feela@network.cz> * * Can be freely distributed and used under the terms of the GNU GPL. * @@ -10,14 +10,12 @@ #ifndef _BIRD_OSPF_LSUPD_H_ #define _BIRD_OSPF_LSUPD_H_ -void ospf_lsupd_tx_list(struct ospf_neighbor *n, list *l); +void ospf_lsupd_send_list(struct ospf_neighbor *n, list * l); void ospf_lsupd_receive(struct ospf_lsupd_packet *ps, - struct ospf_iface *ifa, u16 size); -int flood_lsa(struct ospf_neighbor *n, struct ospf_lsa_header *hn, - struct ospf_lsa_header *hh, struct proto_ospf *po, struct ospf_iface *iff, - struct ospf_area *oa, int rtl); -void net_flush_lsa(struct top_hash_entry *en, struct proto_ospf *po, - struct ospf_area *oa); - + struct ospf_iface *ifa, u16 size); +int ospf_lsupd_flood(struct ospf_neighbor *n, struct ospf_lsa_header *hn, + struct ospf_lsa_header *hh, struct ospf_iface *iff, + struct ospf_area *oa, int rtl); +void ospf_lsupd_flush_nlsa(struct top_hash_entry *en, struct ospf_area *oa); #endif /* _BIRD_OSPF_LSUPD_H_ */ |