]> git.proxmox.com Git - mirror_frr.git/blame - zebra/connected.h
*: reindent
[mirror_frr.git] / zebra / connected.h
CommitLineData
718e3744 1/*
2 * Interface's address and mask.
3 * Copyright (C) 1997 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
22#ifndef _ZEBRA_CONNECTED_H
23#define _ZEBRA_CONNECTED_H
24
d62a17ae 25extern struct connected *connected_check(struct interface *ifp,
26 struct prefix *p);
718e3744 27
d62a17ae 28extern void connected_add_ipv4(struct interface *ifp, int flags,
29 struct in_addr *addr, u_char prefixlen,
30 struct in_addr *broad, const char *label);
718e3744 31
d62a17ae 32extern void connected_delete_ipv4(struct interface *ifp, int flags,
33 struct in_addr *addr, u_char prefixlen,
34 struct in_addr *broad);
718e3744 35
d62a17ae 36extern void connected_delete_ipv4_unnumbered(struct connected *ifc);
525c1839 37
d62a17ae 38extern void connected_up_ipv4(struct interface *, struct connected *);
39extern void connected_down_ipv4(struct interface *, struct connected *);
718e3744 40
d62a17ae 41extern void connected_add_ipv6(struct interface *ifp, int flags,
42 struct in6_addr *address, u_char prefixlen,
43 struct in6_addr *broad, const char *label);
44extern void connected_delete_ipv6(struct interface *ifp,
45 struct in6_addr *address, u_char prefixlen,
46 struct in6_addr *broad);
718e3744 47
d62a17ae 48extern void connected_up_ipv6(struct interface *, struct connected *);
49extern void connected_down_ipv6(struct interface *ifp, struct connected *);
718e3744 50
d62a17ae 51extern int connected_is_unnumbered(struct interface *);
d44ca835 52
718e3744 53#endif /*_ZEBRA_CONNECTED_H */