]> git.proxmox.com Git - mirror_frr.git/blame - ripngd/ripng_nexthop.h
debian: add pkg-config to build-depends
[mirror_frr.git] / ripngd / ripng_nexthop.h
CommitLineData
a94434b6 1/* RIPng nexthop support
2 * Copyright (C) 6WIND Vincent Jardin <vincent.jardin@6wind.com>
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
ac4d0be5 19 * 02111-1307, USA.
a94434b6 20 */
21
22#ifndef _ZEBRA_RIPNG_RIPNG_NEXTHOP_H
23#define _ZEBRA_RIPNG_RIPNG_NEXTHOP_H
24
25#include <zebra.h>
26#include "linklist.h"
27#include "ripngd/ripng_route.h"
28#include "ripngd/ripngd.h"
29
ac4d0be5 30extern struct list *ripng_rte_new(void);
6ac29a51
PJ
31extern void ripng_rte_free(struct list *ripng_rte_list);
32extern void ripng_rte_add(struct list *ripng_rte_list, struct prefix_ipv6 *p,
ac4d0be5 33 struct ripng_info *rinfo,
34 struct ripng_aggregate *aggregate);
6ac29a51 35extern void ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp,
ac4d0be5 36 struct sockaddr_in6 *to);
a94434b6 37
38/***
39 * 1 if A > B
40 * 0 if A = B
41 * -1 if A < B
42 **/
ac4d0be5 43static inline int addr6_cmp(struct in6_addr *A, struct in6_addr *B)
5c6ed111 44{
a94434b6 45#define a(i) A->s6_addr32[i]
46#define b(i) B->s6_addr32[i]
47
ac4d0be5 48 if (a(3) > b(3))
49 return 1;
50 else if ((a(3) == b(3)) && (a(2) > b(2)))
51 return 1;
52 else if ((a(3) == b(3)) && (a(2) == b(2)) && (a(1) > b(1)))
53 return 1;
54 else if ((a(3) == b(3)) && (a(2) == b(2)) && (a(1) == b(1))
55 && (a(0) > b(0)))
56 return 1;
a94434b6 57
ac4d0be5 58 if ((a(3) == b(3)) && (a(2) == b(2)) && (a(1) == b(1))
59 && (a(0) == b(0)))
60 return 0;
a94434b6 61
ac4d0be5 62 return -1;
a94434b6 63}
64
65#endif /* _ZEBRA_RIPNG_RIPNG_NEXTHOP_H */