]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/if_rmap.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / if_rmap.h
index e38b5f7f739d5349eeee36dc56ff49d6dcb47278..4468b9fb9cddfc73473011affbe9f42a71a0a781 100644 (file)
 #ifndef _ZEBRA_IF_RMAP_H
 #define _ZEBRA_IF_RMAP_H
 
-enum if_rmap_type
-{
-  IF_RMAP_IN,
-  IF_RMAP_OUT,
-  IF_RMAP_MAX
-};
+enum if_rmap_type { IF_RMAP_IN, IF_RMAP_OUT, IF_RMAP_MAX };
 
-struct if_rmap
-{
-  /* Name of the interface. */
-  char *ifname;
+struct if_rmap {
+       /* Name of the interface. */
+       char *ifname;
 
-  char *routemap[IF_RMAP_MAX];
+       char *routemap[IF_RMAP_MAX];
 };
 
-extern void if_rmap_init (int);
-extern void if_rmap_reset (void);
-extern void if_rmap_hook_add (void (*) (struct if_rmap *));
-extern void if_rmap_hook_delete (void (*) (struct if_rmap *));
-extern struct if_rmap *if_rmap_lookup (const char *);
-extern int config_write_if_rmap (struct vty *);
+extern void if_rmap_init(int);
+extern void if_rmap_reset(void);
+extern void if_rmap_hook_add(void (*)(struct if_rmap *));
+extern void if_rmap_hook_delete(void (*)(struct if_rmap *));
+extern struct if_rmap *if_rmap_lookup(const char *);
+extern int config_write_if_rmap(struct vty *);
 
 #endif /* _ZEBRA_IF_RMAP_H */