diff options
| author | Jakub Urbańczyk <xthaid@gmail.com> | 2020-08-06 13:36:22 +0200 | 
|---|---|---|
| committer | Jakub Urbańczyk <xthaid@gmail.com> | 2020-08-12 23:20:52 +0200 | 
| commit | aa530b627de8d1d8c11e4455f3e97a8c2e045281 (patch) | |
| tree | e9c6e733d5c23379647cfa93a136eaca5c24b2db /ospfd/ospf_zebra.h | |
| parent | da187b7705828cb2e2bff94275bc36ca6f69999c (diff) | |
ospfd: send ARP requests using zebra
Signed-off-by: Jakub Urbańczyk <xthaid@gmail.com>
Diffstat (limited to 'ospfd/ospf_zebra.h')
| -rw-r--r-- | ospfd/ospf_zebra.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/ospfd/ospf_zebra.h b/ospfd/ospf_zebra.h index 80abf62369..6a79f39fa4 100644 --- a/ospfd/ospf_zebra.h +++ b/ospfd/ospf_zebra.h @@ -41,6 +41,7 @@ struct ospf_distance {  };  /* Prototypes */ +struct ospf_route;  extern void ospf_zebra_add(struct ospf *ospf, struct prefix_ipv4 *,  			   struct ospf_route *);  extern void ospf_zebra_delete(struct ospf *ospf, struct prefix_ipv4 *, @@ -98,4 +99,7 @@ bool ospf_external_default_routemap_apply_walk(  int ospf_external_info_apply_default_routemap(struct ospf *ospf,  					      struct external_info *ei,  					      struct external_info *default_ei); + +extern void ospf_zebra_send_arp(const struct interface *ifp, +				const struct prefix *p);  #endif /* _ZEBRA_OSPF_ZEBRA_H */  | 
