diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-09-09 16:42:52 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-09-09 16:42:52 -0400 | 
| commit | 7932dd93319b8125c53d42effb52ce5834b6d3c0 (patch) | |
| tree | 8e8073953ceef87fa8f73a0801121db18899cef8 /ospf6d/ospf6_neighbor.h | |
| parent | f334c88ed9675eab624728ecd6eaaff3a9b41255 (diff) | |
ospf6d: Cleanup headers to our standard
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospf6d/ospf6_neighbor.h')
| -rw-r--r-- | ospf6d/ospf6_neighbor.h | 32 | 
1 files changed, 16 insertions, 16 deletions
diff --git a/ospf6d/ospf6_neighbor.h b/ospf6d/ospf6_neighbor.h index a229897226..30e044da4b 100644 --- a/ospf6d/ospf6_neighbor.h +++ b/ospf6d/ospf6_neighbor.h @@ -183,24 +183,24 @@ extern const char *const ospf6_neighbor_state_str[];  int ospf6_neighbor_cmp(void *va, void *vb);  void ospf6_neighbor_dbex_init(struct ospf6_neighbor *on); -struct ospf6_neighbor *ospf6_neighbor_lookup(uint32_t, -					     struct ospf6_interface *); -struct ospf6_neighbor *ospf6_neighbor_create(uint32_t, -					     struct ospf6_interface *); -void ospf6_neighbor_delete(struct ospf6_neighbor *); +struct ospf6_neighbor *ospf6_neighbor_lookup(uint32_t router_id, +					     struct ospf6_interface *oi); +struct ospf6_neighbor *ospf6_neighbor_create(uint32_t router_id, +					     struct ospf6_interface *oi); +void ospf6_neighbor_delete(struct ospf6_neighbor *on);  /* Neighbor event */ -extern int hello_received(struct thread *); -extern int twoway_received(struct thread *); -extern int negotiation_done(struct thread *); -extern int exchange_done(struct thread *); -extern int loading_done(struct thread *); -extern int adj_ok(struct thread *); -extern int seqnumber_mismatch(struct thread *); -extern int bad_lsreq(struct thread *); -extern int oneway_received(struct thread *); -extern int inactivity_timer(struct thread *); -extern void ospf6_check_nbr_loading(struct ospf6_neighbor *); +extern int hello_received(struct thread *thread); +extern int twoway_received(struct thread *thread); +extern int negotiation_done(struct thread *thread); +extern int exchange_done(struct thread *thread); +extern int loading_done(struct thread *thread); +extern int adj_ok(struct thread *thread); +extern int seqnumber_mismatch(struct thread *thread); +extern int bad_lsreq(struct thread *thread); +extern int oneway_received(struct thread *thread); +extern int inactivity_timer(struct thread *thread); +extern void ospf6_check_nbr_loading(struct ospf6_neighbor *on);  extern void ospf6_neighbor_init(void);  extern int config_write_ospf6_debug_neighbor(struct vty *vty);  | 
