diff options
author | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-23 19:18:23 +0000 |
commit | 4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f (patch) | |
tree | a91cf8638374956315b62b8ef31dae29f90ee07e /ospfd/ospf_flood.c | |
parent | b1184fa423d676dddeba855994ec32758fda1d31 (diff) | |
download | quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.bz2 quagga-4e920a4d6e1f8097d02ea84c85edaa951d0fdb4f.tar.xz |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'ospfd/ospf_flood.c')
-rw-r--r-- | ospfd/ospf_flood.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ospfd/ospf_flood.c b/ospfd/ospf_flood.c index b706279e..c1d2131a 100644 --- a/ospfd/ospf_flood.c +++ b/ospfd/ospf_flood.c @@ -116,7 +116,7 @@ ospf_process_self_originated_lsa (struct ospf *ospf, { struct ospf_interface *oi; struct external_info *ei; - listnode node; + struct listnode *node; if (IS_DEBUG_OSPF_EVENT) zlog_info ("LSA[Type%d:%s]: Process self-originated LSA seq 0x%x", @@ -569,7 +569,7 @@ int ospf_flood_through_area (struct ospf_area *area, struct ospf_neighbor *inbr, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; int lsa_ack_flag = 0; /* All other types are specific to a single area (Area A). The @@ -608,7 +608,7 @@ int ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; int lsa_ack_flag; lsa_ack_flag = 0; @@ -632,7 +632,7 @@ ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr, { int continue_flag = 0; struct ospf_area *area = getdata (node); - listnode if_node; + struct listnode *if_node; switch (area->external_routing) { @@ -965,7 +965,7 @@ void ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; for (node = listhead (area->oiflist); node; nextnode (node)) ospf_ls_retransmit_delete_nbr_if (getdata (node), lsa); @@ -974,7 +974,7 @@ ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area, void ospf_ls_retransmit_delete_nbr_as (struct ospf *ospf, struct ospf_lsa *lsa) { - listnode node; + struct listnode *node; for (node = listhead (ospf->oiflist); node; nextnode (node)) ospf_ls_retransmit_delete_nbr_if (getdata (node), lsa); |