summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_proto.c
diff options
context:
space:
mode:
authorwhitespace / reindent <invalid@invalid.invalid>2017-08-09 11:49:42 +0200
committerwhitespace / reindent <invalid@invalid.invalid>2017-08-09 12:03:17 +0200
commitac4d0be5874fafd14212d6007fff7495edc9b152 (patch)
tree5e2f0d3189de928c849f9983406389ade3b098cb /ospf6d/ospf6_proto.c
parent76a86854181c27819e5cf71b12ae1fa5ccd9e02a (diff)
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'` Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_proto.c')
-rw-r--r--ospf6d/ospf6_proto.c83
1 files changed, 38 insertions, 45 deletions
diff --git a/ospf6d/ospf6_proto.c b/ospf6d/ospf6_proto.c
index d011601f07..8f2f70da03 100644
--- a/ospf6d/ospf6_proto.c
+++ b/ospf6d/ospf6_proto.c
@@ -14,9 +14,9 @@
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with GNU Zebra; see the file COPYING. If not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * along with GNU Zebra; see the file COPYING. If not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
*/
#include <zebra.h>
@@ -25,60 +25,53 @@
#include "ospf6_proto.h"
-void
-ospf6_prefix_apply_mask (struct ospf6_prefix *op)
+void ospf6_prefix_apply_mask(struct ospf6_prefix *op)
{
- u_char *pnt, mask;
- int index, offset;
+ u_char *pnt, mask;
+ int index, offset;
- pnt = (u_char *)((caddr_t) op + sizeof (struct ospf6_prefix));
- index = op->prefix_length / 8;
- offset = op->prefix_length % 8;
- mask = 0xff << (8 - offset);
+ pnt = (u_char *)((caddr_t)op + sizeof(struct ospf6_prefix));
+ index = op->prefix_length / 8;
+ offset = op->prefix_length % 8;
+ mask = 0xff << (8 - offset);
- if (index > 16)
- {
- zlog_warn ("Prefix length too long: %d", op->prefix_length);
- return;
- }
+ if (index > 16) {
+ zlog_warn("Prefix length too long: %d", op->prefix_length);
+ return;
+ }
- /* nonzero mask means no check for this byte because if it contains
- * prefix bits it must be there for us to write */
- if (mask)
- pnt[index++] &= mask;
+ /* nonzero mask means no check for this byte because if it contains
+ * prefix bits it must be there for us to write */
+ if (mask)
+ pnt[index++] &= mask;
- while (index < OSPF6_PREFIX_SPACE (op->prefix_length))
- pnt[index++] = 0;
+ while (index < OSPF6_PREFIX_SPACE(op->prefix_length))
+ pnt[index++] = 0;
}
-void
-ospf6_prefix_options_printbuf (u_int8_t prefix_options, char *buf, int size)
+void ospf6_prefix_options_printbuf(u_int8_t prefix_options, char *buf, int size)
{
- snprintf (buf, size, "xxx");
+ snprintf(buf, size, "xxx");
}
-void
-ospf6_capability_printbuf (char capability, char *buf, int size)
+void ospf6_capability_printbuf(char capability, char *buf, int size)
{
- char w, v, e, b;
- w = (capability & OSPF6_ROUTER_BIT_W ? 'W' : '-');
- v = (capability & OSPF6_ROUTER_BIT_V ? 'V' : '-');
- e = (capability & OSPF6_ROUTER_BIT_E ? 'E' : '-');
- b = (capability & OSPF6_ROUTER_BIT_B ? 'B' : '-');
- snprintf (buf, size, "----%c%c%c%c", w, v, e, b);
+ char w, v, e, b;
+ w = (capability & OSPF6_ROUTER_BIT_W ? 'W' : '-');
+ v = (capability & OSPF6_ROUTER_BIT_V ? 'V' : '-');
+ e = (capability & OSPF6_ROUTER_BIT_E ? 'E' : '-');
+ b = (capability & OSPF6_ROUTER_BIT_B ? 'B' : '-');
+ snprintf(buf, size, "----%c%c%c%c", w, v, e, b);
}
-void
-ospf6_options_printbuf (u_char *options, char *buf, int size)
+void ospf6_options_printbuf(u_char *options, char *buf, int size)
{
- const char *dc, *r, *n, *mc, *e, *v6;
- dc = (OSPF6_OPT_ISSET (options, OSPF6_OPT_DC) ? "DC" : "--");
- r = (OSPF6_OPT_ISSET (options, OSPF6_OPT_R) ? "R" : "-" );
- n = (OSPF6_OPT_ISSET (options, OSPF6_OPT_N) ? "N" : "-" );
- mc = (OSPF6_OPT_ISSET (options, OSPF6_OPT_MC) ? "MC" : "--");
- e = (OSPF6_OPT_ISSET (options, OSPF6_OPT_E) ? "E" : "-" );
- v6 = (OSPF6_OPT_ISSET (options, OSPF6_OPT_V6) ? "V6" : "--");
- snprintf (buf, size, "%s|%s|%s|%s|%s|%s", dc, r, n, mc, e, v6);
+ const char *dc, *r, *n, *mc, *e, *v6;
+ dc = (OSPF6_OPT_ISSET(options, OSPF6_OPT_DC) ? "DC" : "--");
+ r = (OSPF6_OPT_ISSET(options, OSPF6_OPT_R) ? "R" : "-");
+ n = (OSPF6_OPT_ISSET(options, OSPF6_OPT_N) ? "N" : "-");
+ mc = (OSPF6_OPT_ISSET(options, OSPF6_OPT_MC) ? "MC" : "--");
+ e = (OSPF6_OPT_ISSET(options, OSPF6_OPT_E) ? "E" : "-");
+ v6 = (OSPF6_OPT_ISSET(options, OSPF6_OPT_V6) ? "V6" : "--");
+ snprintf(buf, size, "%s|%s|%s|%s|%s|%s", dc, r, n, mc, e, v6);
}
-
-