summaryrefslogtreecommitdiffstats
path: root/lib/if_rmap.h
diff options
context:
space:
mode:
authorwhitespace / reindent <invalid@invalid.invalid>2017-07-17 14:03:14 +0200
committerwhitespace / reindent <invalid@invalid.invalid>2017-07-17 14:04:07 +0200
commitd62a17aedeb0eebdba98238874bb13d62c48dbf9 (patch)
tree3b319b1d61c8b85b4d1f06adf8b844bb8a9b5107 /lib/if_rmap.h
parent*: add indent control files (diff)
downloadfrr-d62a17aedeb0eebdba98238874bb13d62c48dbf9.tar.xz
frr-d62a17aedeb0eebdba98238874bb13d62c48dbf9.zip
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'` Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/if_rmap.h')
-rw-r--r--lib/if_rmap.h28
1 files changed, 11 insertions, 17 deletions
diff --git a/lib/if_rmap.h b/lib/if_rmap.h
index e38b5f7f7..4468b9fb9 100644
--- a/lib/if_rmap.h
+++ b/lib/if_rmap.h
@@ -21,26 +21,20 @@
#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 */