summaryrefslogtreecommitdiffstats
path: root/lib/plist_int.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/plist_int.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/plist_int.h')
-rw-r--r--lib/plist_int.h58
1 files changed, 26 insertions, 32 deletions
diff --git a/lib/plist_int.h b/lib/plist_int.h
index e711d1256..aa81a3bce 100644
--- a/lib/plist_int.h
+++ b/lib/plist_int.h
@@ -22,56 +22,50 @@
#ifndef _QUAGGA_PLIST_INT_H
#define _QUAGGA_PLIST_INT_H
-enum prefix_name_type
-{
- PREFIX_TYPE_STRING,
- PREFIX_TYPE_NUMBER
-};
+enum prefix_name_type { PREFIX_TYPE_STRING, PREFIX_TYPE_NUMBER };
struct pltrie_table;
-struct prefix_list
-{
- char *name;
- char *desc;
+struct prefix_list {
+ char *name;
+ char *desc;
- struct prefix_master *master;
+ struct prefix_master *master;
- enum prefix_name_type type;
+ enum prefix_name_type type;
- int count;
- int rangecount;
+ int count;
+ int rangecount;
- struct prefix_list_entry *head;
- struct prefix_list_entry *tail;
+ struct prefix_list_entry *head;
+ struct prefix_list_entry *tail;
- struct pltrie_table *trie;
+ struct pltrie_table *trie;
- struct prefix_list *next;
- struct prefix_list *prev;
+ struct prefix_list *next;
+ struct prefix_list *prev;
};
/* Each prefix-list's entry. */
-struct prefix_list_entry
-{
- int seq;
+struct prefix_list_entry {
+ int seq;
- int le;
- int ge;
+ int le;
+ int ge;
- enum prefix_list_type type;
+ enum prefix_list_type type;
- int any;
- struct prefix prefix;
+ int any;
+ struct prefix prefix;
- unsigned long refcnt;
- unsigned long hitcnt;
+ unsigned long refcnt;
+ unsigned long hitcnt;
- struct prefix_list_entry *next;
- struct prefix_list_entry *prev;
+ struct prefix_list_entry *next;
+ struct prefix_list_entry *prev;
- /* up the chain for best match search */
- struct prefix_list_entry *next_best;
+ /* up the chain for best match search */
+ struct prefix_list_entry *next_best;
};
#endif /* _QUAGGA_PLIST_INT_H */