]> git.proxmox.com Git - mirror_frr.git/blame - zebra/connected.h
zebra: let /32 host route with same IP cross VRF
[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
43e52561
QY
25#include <zebra.h>
26#include <stdint.h>
27
28#include "lib/if.h"
29#include "lib/prefix.h"
30
51e94aa7
EDP
31#ifdef __cplusplus
32extern "C" {
33#endif
34
d62a17ae 35extern struct connected *connected_check(struct interface *ifp,
abffde07
DL
36 union prefixconstptr p);
37extern struct connected *connected_check_ptp(struct interface *ifp,
38 union prefixconstptr p,
39 union prefixconstptr d);
718e3744 40
d62a17ae 41extern void connected_add_ipv4(struct interface *ifp, int flags,
9c86ee1e
MS
42 const struct in_addr *addr, uint16_t prefixlen,
43 const struct in_addr *dest, const char *label,
cde1af84 44 uint32_t metric);
718e3744 45
d62a17ae 46extern void connected_delete_ipv4(struct interface *ifp, int flags,
9c86ee1e
MS
47 const struct in_addr *addr,
48 uint16_t prefixlen,
49 const struct in_addr *dest);
718e3744 50
d62a17ae 51extern void connected_delete_ipv4_unnumbered(struct connected *ifc);
525c1839 52
ae87977c 53extern void connected_up(struct interface *ifp, struct connected *ifc);
11461c63 54extern void connected_down(struct interface *ifp, struct connected *ifc);
718e3744 55
d62a17ae 56extern void connected_add_ipv6(struct interface *ifp, int flags,
9c86ee1e
MS
57 const struct in6_addr *address,
58 const struct in6_addr *dest, uint16_t prefixlen,
59 const char *label, uint32_t metric);
d62a17ae 60extern void connected_delete_ipv6(struct interface *ifp,
9c86ee1e
MS
61 const struct in6_addr *address,
62 const struct in6_addr *dest,
63 uint16_t prefixlen);
718e3744 64
d62a17ae 65extern int connected_is_unnumbered(struct interface *);
d44ca835 66
51e94aa7
EDP
67#ifdef __cplusplus
68}
69#endif
718e3744 70#endif /*_ZEBRA_CONNECTED_H */