Ignore:
Timestamp:
10/27/08 13:38:07 (5 years ago)
Author:
BrainSlayer
Message:

quagga update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/router/quagga/ospf6d/ospf6_spf.c

    r10334 r10627  
    4444unsigned char conf_debug_ospf6_spf = 0; 
    4545 
    46 int 
     46static int 
    4747ospf6_vertex_cmp (void *a, void *b) 
    4848{ 
     
    5454} 
    5555 
    56 int 
     56static int 
    5757ospf6_vertex_id_cmp (void *a, void *b) 
    5858{ 
     
    7171} 
    7272 
    73 struct ospf6_vertex * 
     73static struct ospf6_vertex * 
    7474ospf6_vertex_create (struct ospf6_lsa *lsa) 
    7575{ 
     
    114114} 
    115115 
    116 void 
     116static void 
    117117ospf6_vertex_delete (struct ospf6_vertex *v) 
    118118{ 
     
    121121} 
    122122 
    123 struct ospf6_lsa * 
     123static struct ospf6_lsa * 
    124124ospf6_lsdesc_lsa (caddr_t lsdesc, struct ospf6_vertex *v) 
    125125{ 
     
    167167} 
    168168 
    169 char * 
     169static char * 
    170170ospf6_lsdesc_backlink (struct ospf6_lsa *lsa, 
    171171                       caddr_t lsdesc, struct ospf6_vertex *v) 
     
    219219} 
    220220 
    221 void 
     221static void 
    222222ospf6_nexthop_calc (struct ospf6_vertex *w, struct ospf6_vertex *v, 
    223223                    caddr_t lsdesc) 
     
    275275} 
    276276 
    277 int 
     277static int 
    278278ospf6_spf_install (struct ospf6_vertex *v, 
    279279                   struct ospf6_route_table *result_table) 
     
    488488} 
    489489 
    490 void 
     490static void 
    491491ospf6_spf_log_database (struct ospf6_area *oa) 
    492492{ 
     
    513513} 
    514514 
    515 int 
     515static int 
    516516ospf6_spf_calculation_thread (struct thread *t) 
    517517{ 
     
    690690 
    691691void 
    692 install_element_ospf6_debug_spf () 
     692install_element_ospf6_debug_spf (void) 
    693693{ 
    694694  install_element (ENABLE_NODE, &debug_ospf6_spf_process_cmd); 
     
    707707 
    708708void 
    709 ospf6_spf_init () 
    710 { 
    711 } 
    712  
    713  
     709ospf6_spf_init (void) 
     710{ 
     711} 
     712 
     713 
Note: See TracChangeset for help on using the changeset viewer.