summaryrefslogtreecommitdiff
path: root/bgpd/rfapi/rfapi_vty.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/rfapi_vty.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/rfapi_vty.h')
-rw-r--r--bgpd/rfapi/rfapi_vty.h188
1 files changed, 71 insertions, 117 deletions
diff --git a/bgpd/rfapi/rfapi_vty.h b/bgpd/rfapi/rfapi_vty.h
index 46b77b55ed..a08183aa46 100644
--- a/bgpd/rfapi/rfapi_vty.h
+++ b/bgpd/rfapi/rfapi_vty.h
@@ -1,4 +1,4 @@
-/*
+/*
*
* Copyright 2009-2016, LabN Consulting, L.L.C.
*
@@ -23,74 +23,59 @@
#include "lib/vty.h"
-typedef enum
-{
- SHOW_NVE_SUMMARY_ACTIVE_NVES,
- SHOW_NVE_SUMMARY_UNKNOWN_NVES, /* legacy */
- SHOW_NVE_SUMMARY_REGISTERED,
- SHOW_NVE_SUMMARY_QUERIES,
- SHOW_NVE_SUMMARY_RESPONSES,
- SHOW_NVE_SUMMARY_MAX
+typedef enum {
+ SHOW_NVE_SUMMARY_ACTIVE_NVES,
+ SHOW_NVE_SUMMARY_UNKNOWN_NVES, /* legacy */
+ SHOW_NVE_SUMMARY_REGISTERED,
+ SHOW_NVE_SUMMARY_QUERIES,
+ SHOW_NVE_SUMMARY_RESPONSES,
+ SHOW_NVE_SUMMARY_MAX
} show_nve_summary_t;
#define VNC_SHOW_STR "VNC information\n"
-extern char *
-rfapiFormatSeconds (uint32_t seconds, char *buf, size_t len);
+extern char *rfapiFormatSeconds(uint32_t seconds, char *buf, size_t len);
-extern char *
-rfapiFormatAge (time_t age, char *buf, size_t len);
+extern char *rfapiFormatAge(time_t age, char *buf, size_t len);
-extern void
-rfapiRprefixApplyMask (struct rfapi_ip_prefix *rprefix);
+extern void rfapiRprefixApplyMask(struct rfapi_ip_prefix *rprefix);
-extern int
-rfapiQprefix2Raddr (struct prefix *qprefix, struct rfapi_ip_addr *raddr);
+extern int rfapiQprefix2Raddr(struct prefix *qprefix,
+ struct rfapi_ip_addr *raddr);
-extern void
-rfapiQprefix2Rprefix (struct prefix *qprefix,
- struct rfapi_ip_prefix *rprefix);
+extern void rfapiQprefix2Rprefix(struct prefix *qprefix,
+ struct rfapi_ip_prefix *rprefix);
-extern int
-rfapiRprefix2Qprefix (struct rfapi_ip_prefix *rprefix,
- struct prefix *qprefix);
+extern int rfapiRprefix2Qprefix(struct rfapi_ip_prefix *rprefix,
+ struct prefix *qprefix);
-extern int
-rfapiRaddr2Qprefix (struct rfapi_ip_addr *hia, struct prefix *pfx);
+extern int rfapiRaddr2Qprefix(struct rfapi_ip_addr *hia, struct prefix *pfx);
-extern int
-rfapiRprefixSame (struct rfapi_ip_prefix *hp1, struct rfapi_ip_prefix *hp2);
+extern int rfapiRprefixSame(struct rfapi_ip_prefix *hp1,
+ struct rfapi_ip_prefix *hp2);
-extern void
-rfapiL2o2Qprefix (struct rfapi_l2address_option *l2o, struct prefix *pfx);
+extern void rfapiL2o2Qprefix(struct rfapi_l2address_option *l2o,
+ struct prefix *pfx);
-extern int
-rfapiStr2EthAddr (const char *str, struct ethaddr *ea);
+extern int rfapiStr2EthAddr(const char *str, struct ethaddr *ea);
-extern const char *
-rfapi_ntop (
- int af,
- const void *src,
- char *buf,
- socklen_t size);
+extern const char *rfapi_ntop(int af, const void *src, char *buf,
+ socklen_t size);
-extern int
-rfapiDebugPrintf (void *dummy, const char *format, ...);
+extern int rfapiDebugPrintf(void *dummy, const char *format, ...);
-extern int
-rfapiStream2Vty (
- void *stream, /* input */
- int (**fp) (void *, const char *, ...), /* output */
- struct vty **vty, /* output */
- void **outstream, /* output */
- const char **vty_newline); /* output */
+extern int rfapiStream2Vty(void *stream, /* input */
+ int (**fp)(void *, const char *, ...), /* output */
+ struct vty **vty, /* output */
+ void **outstream, /* output */
+ const char **vty_newline); /* output */
/*------------------------------------------
* rfapiRfapiIpAddr2Str
*
* UI helper: generate string from rfapi_ip_addr
*
- * input:
+ * input:
* a IP v4/v6 address
*
* output
@@ -101,75 +86,50 @@ rfapiStream2Vty (
* NULL conversion failed
* non-NULL pointer to buf
--------------------------------------------*/
-extern const char *
-rfapiRfapiIpAddr2Str (struct rfapi_ip_addr *a, char *buf, int bufsize);
+extern const char *rfapiRfapiIpAddr2Str(struct rfapi_ip_addr *a, char *buf,
+ int bufsize);
-extern void
-rfapiPrintRfapiIpAddr (void *stream, struct rfapi_ip_addr *a);
+extern void rfapiPrintRfapiIpAddr(void *stream, struct rfapi_ip_addr *a);
-extern void
-rfapiPrintRfapiIpPrefix (void *stream, struct rfapi_ip_prefix *p);
+extern void rfapiPrintRfapiIpPrefix(void *stream, struct rfapi_ip_prefix *p);
-void
-rfapiPrintRd (struct vty *vty, struct prefix_rd *prd);
+void rfapiPrintRd(struct vty *vty, struct prefix_rd *prd);
-extern void
-rfapiPrintAdvertisedInfo (
- struct vty *vty,
- struct rfapi_descriptor *rfd,
- safi_t safi,
- struct prefix *p);
+extern void rfapiPrintAdvertisedInfo(struct vty *vty,
+ struct rfapi_descriptor *rfd, safi_t safi,
+ struct prefix *p);
-extern void
-rfapiPrintDescriptor (struct vty *vty, struct rfapi_descriptor *rfd);
+extern void rfapiPrintDescriptor(struct vty *vty, struct rfapi_descriptor *rfd);
-extern void
-rfapiPrintMatchingDescriptors (struct vty *vty,
- struct prefix *vn_prefix,
- struct prefix *un_prefix);
+extern void rfapiPrintMatchingDescriptors(struct vty *vty,
+ struct prefix *vn_prefix,
+ struct prefix *un_prefix);
-extern void
-rfapiPrintAttrPtrs (void *stream, struct attr *attr);
+extern void rfapiPrintAttrPtrs(void *stream, struct attr *attr);
/*
* Parse an address and put into a struct prefix
*/
-extern int
-rfapiCliGetPrefixAddr (struct vty *vty, const char *str, struct prefix *p);
-
-extern int
-rfapiCliGetRfapiIpAddr (
- struct vty *vty,
- const char *str,
- struct rfapi_ip_addr *hai);
-
-extern void
-rfapiPrintNhl (void *stream, struct rfapi_next_hop_entry *next_hops);
-
-extern char *
-rfapiMonitorVpn2Str (
- struct rfapi_monitor_vpn *m,
- char *buf,
- int size);
-
-extern const char *
-rfapiRfapiIpPrefix2Str (
- struct rfapi_ip_prefix *p,
- char *buf,
- int bufsize);
-
-extern void
-rfapiShowItNode (void *stream, struct route_node *rn);
-
-extern char *
-rfapiEthAddr2Str (
- const struct ethaddr *ea,
- char *buf,
- int bufsize);
+extern int rfapiCliGetPrefixAddr(struct vty *vty, const char *str,
+ struct prefix *p);
+
+extern int rfapiCliGetRfapiIpAddr(struct vty *vty, const char *str,
+ struct rfapi_ip_addr *hai);
+
+extern void rfapiPrintNhl(void *stream, struct rfapi_next_hop_entry *next_hops);
+
+extern char *rfapiMonitorVpn2Str(struct rfapi_monitor_vpn *m, char *buf,
+ int size);
+
+extern const char *rfapiRfapiIpPrefix2Str(struct rfapi_ip_prefix *p, char *buf,
+ int bufsize);
+
+extern void rfapiShowItNode(void *stream, struct route_node *rn);
+
+extern char *rfapiEthAddr2Str(const struct ethaddr *ea, char *buf, int bufsize);
/* install vty commands */
-extern void
-rfapi_vty_init (void);
+extern void rfapi_vty_init(void);
/*------------------------------------------
* rfapiShowRemoteRegistrations
@@ -177,7 +137,7 @@ rfapi_vty_init (void);
* UI helper: produces the "remote" portion of the output
* of "show vnc registrations".
*
- * input:
+ * input:
* stream pointer to output stream
* prefix_only pointer to prefix. If non-NULL, print only registrations
* matching the specified prefix
@@ -189,21 +149,17 @@ rfapi_vty_init (void);
* 0 nothing printed
* >0 something printed
--------------------------------------------*/
-extern int
-rfapiShowRemoteRegistrations (
- void *stream,
- struct prefix *prefix_only,
- int show_expiring,
- int show_local,
- int show_remote,
- int show_imported);
+extern int rfapiShowRemoteRegistrations(void *stream,
+ struct prefix *prefix_only,
+ int show_expiring, int show_local,
+ int show_remote, int show_imported);
/*------------------------------------------
* rfapi_monitor_count
*
* UI helper: count number of active monitors
*
- * input:
+ * input:
* handle rfapi handle (NULL to count across
* all open handles)
*
@@ -212,11 +168,9 @@ rfapiShowRemoteRegistrations (
* return value:
* count of monitors
--------------------------------------------*/
-extern uint32_t
-rfapi_monitor_count (rfapi_handle);
+extern uint32_t rfapi_monitor_count(rfapi_handle);
-extern int
-rfapiShowVncQueries (void *stream, struct prefix *pfx_match);
+extern int rfapiShowVncQueries(void *stream, struct prefix *pfx_match);
#endif