summaryrefslogtreecommitdiff
path: root/zebra/connected.h
diff options
context:
space:
mode:
Diffstat (limited to 'zebra/connected.h')
-rw-r--r--zebra/connected.h45
1 files changed, 21 insertions, 24 deletions
diff --git a/zebra/connected.h b/zebra/connected.h
index bdcf6085e4..94e4de41ca 100644
--- a/zebra/connected.h
+++ b/zebra/connected.h
@@ -17,41 +17,38 @@
* 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.
+ * 02111-1307, USA.
*/
#ifndef _ZEBRA_CONNECTED_H
#define _ZEBRA_CONNECTED_H
-extern struct connected *
-connected_check (struct interface *ifp, struct prefix *p);
+extern struct connected *connected_check(struct interface *ifp,
+ struct prefix *p);
-extern void
-connected_add_ipv4 (struct interface *ifp, int flags, struct in_addr *addr,
- u_char prefixlen, struct in_addr *broad,
- const char *label);
+extern void connected_add_ipv4(struct interface *ifp, int flags,
+ struct in_addr *addr, u_char prefixlen,
+ struct in_addr *broad, const char *label);
-extern void
-connected_delete_ipv4 (struct interface *ifp, int flags, struct in_addr *addr,
- u_char prefixlen, struct in_addr *broad);
+extern void connected_delete_ipv4(struct interface *ifp, int flags,
+ struct in_addr *addr, u_char prefixlen,
+ struct in_addr *broad);
-extern void
-connected_delete_ipv4_unnumbered (struct connected *ifc);
+extern void connected_delete_ipv4_unnumbered(struct connected *ifc);
-extern void connected_up_ipv4 (struct interface *, struct connected *);
-extern void connected_down_ipv4 (struct interface *, struct connected *);
+extern void connected_up_ipv4(struct interface *, struct connected *);
+extern void connected_down_ipv4(struct interface *, struct connected *);
-extern void
-connected_add_ipv6 (struct interface *ifp, int flags, struct in6_addr *address,
- u_char prefixlen, struct in6_addr *broad,
- const char *label);
-extern void
-connected_delete_ipv6 (struct interface *ifp, struct in6_addr *address,
- u_char prefixlen, struct in6_addr *broad);
+extern void connected_add_ipv6(struct interface *ifp, int flags,
+ struct in6_addr *address, u_char prefixlen,
+ struct in6_addr *broad, const char *label);
+extern void connected_delete_ipv6(struct interface *ifp,
+ struct in6_addr *address, u_char prefixlen,
+ struct in6_addr *broad);
-extern void connected_up_ipv6 (struct interface *, struct connected *);
-extern void connected_down_ipv6 (struct interface *ifp, struct connected *);
+extern void connected_up_ipv6(struct interface *, struct connected *);
+extern void connected_down_ipv6(struct interface *ifp, struct connected *);
-extern int connected_is_unnumbered (struct interface *);
+extern int connected_is_unnumbered(struct interface *);
#endif /*_ZEBRA_CONNECTED_H */