summaryrefslogtreecommitdiff
path: root/bgpd/rfapi/vnc_export_table.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 /bgpd/rfapi/vnc_export_table.h
parent888ac268a0077fc9ebd1218cec6ae472af0bfc40 (diff)
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'` Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'bgpd/rfapi/vnc_export_table.h')
-rw-r--r--bgpd/rfapi/vnc_export_table.h62
1 files changed, 22 insertions, 40 deletions
diff --git a/bgpd/rfapi/vnc_export_table.h b/bgpd/rfapi/vnc_export_table.h
index 234520670d..aa38233e8f 100644
--- a/bgpd/rfapi/vnc_export_table.h
+++ b/bgpd/rfapi/vnc_export_table.h
@@ -1,4 +1,4 @@
-/*
+/*
*
* Copyright 2009-2016, LabN Consulting, L.L.C.
*
@@ -30,55 +30,37 @@
#define VNC_EXPORT_TYPE_BGP 1
#define VNC_EXPORT_TYPE_ZEBRA 2
-typedef enum vnc_export_type
-{
- EXPORT_TYPE_BGP,
- EXPORT_TYPE_ZEBRA
+typedef enum vnc_export_type {
+ EXPORT_TYPE_BGP,
+ EXPORT_TYPE_ZEBRA
} vnc_export_type_t;
-struct vnc_export_info
-{
- struct vnc_export_info *next;
- struct route_node *node;
- struct peer *peer;
- u_char type;
- u_char subtype;
- uint32_t lifetime;
- struct thread *timer;
+struct vnc_export_info {
+ struct vnc_export_info *next;
+ struct route_node *node;
+ struct peer *peer;
+ u_char type;
+ u_char subtype;
+ uint32_t lifetime;
+ struct thread *timer;
};
-extern struct route_node *
-vnc_etn_get (
- struct bgp *bgp,
- vnc_export_type_t type,
- struct prefix *p);
+extern struct route_node *vnc_etn_get(struct bgp *bgp, vnc_export_type_t type,
+ struct prefix *p);
extern struct route_node *
-vnc_etn_lookup (
- struct bgp *bgp,
- vnc_export_type_t type,
- struct prefix *p);
+vnc_etn_lookup(struct bgp *bgp, vnc_export_type_t type, struct prefix *p);
-extern struct vnc_export_info *
-vnc_eti_get (
- struct bgp *bgp,
- vnc_export_type_t etype,
- struct prefix *p,
- struct peer *peer,
- uint8_t type,
- uint8_t subtype);
+extern struct vnc_export_info *vnc_eti_get(struct bgp *bgp,
+ vnc_export_type_t etype,
+ struct prefix *p, struct peer *peer,
+ uint8_t type, uint8_t subtype);
-extern void
-vnc_eti_delete (struct vnc_export_info *goner);
+extern void vnc_eti_delete(struct vnc_export_info *goner);
extern struct vnc_export_info *
-vnc_eti_checktimer (
- struct bgp *bgp,
- vnc_export_type_t etype,
- struct prefix *p,
- struct peer *peer,
- uint8_t type,
- uint8_t subtype);
+vnc_eti_checktimer(struct bgp *bgp, vnc_export_type_t etype, struct prefix *p,
+ struct peer *peer, uint8_t type, uint8_t subtype);
#endif /* _QUAGGA_VNC_VNC_EXPORT_TABLE_H_ */