blob: 58d2c3ae758bdf7b0b61daf73c23ac045972b291 [file] [log] [blame]
Paul Jakma457eb9a2006-07-27 19:59:58 +00001/* NULL kernel methods for testing. */
2
Paul Jakma010ebbb2014-09-16 11:53:49 +01003/*
4 * Copyright (C) 2006 Sun Microsystems, Inc.
5 *
6 * This file is part of Quagga.
7 *
8 * Quagga is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * Quagga is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with Quagga; see the file COPYING. If not, write to the Free
20 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 * 02111-1307, USA.
22 */
23
Paul Jakma457eb9a2006-07-27 19:59:58 +000024#include <zebra.h>
Paul Jakmad9d00a62007-04-10 19:28:04 +000025#include <log.h>
Paul Jakma457eb9a2006-07-27 19:59:58 +000026
27#include "zebra/zserv.h"
28#include "zebra/rt.h"
29#include "zebra/redistribute.h"
Paul Jakmad9d00a62007-04-10 19:28:04 +000030#include "zebra/connected.h"
Feng Lu758fb8f2014-07-03 18:23:09 +080031#include "zebra/rib.h"
Paul Jakma457eb9a2006-07-27 19:59:58 +000032
33int kernel_add_ipv4 (struct prefix *a, struct rib *b) { return 0; }
Doug VanLeuven327c4cd2012-12-14 14:58:30 +020034#ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
Paul Jakma457eb9a2006-07-27 19:59:58 +000035#pragma weak kernel_delete_ipv4 = kernel_add_ipv4
Doug VanLeuven327c4cd2012-12-14 14:58:30 +020036#else
37int kernel_delete_ipv4 (struct prefix *a, struct rib *b) { return 0; }
38#endif
39
Paul Jakma457eb9a2006-07-27 19:59:58 +000040int kernel_add_ipv6 (struct prefix *a, struct rib *b) { return 0; }
David Lamparterb2baffe2013-01-27 04:46:02 +010041#ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
Paul Jakma457eb9a2006-07-27 19:59:58 +000042#pragma weak kernel_delete_ipv6 = kernel_add_ipv6
Doug VanLeuven327c4cd2012-12-14 14:58:30 +020043#else
44int kernel_delete_ipv6 (struct prefix *a, struct rib *b) { return 0; }
45#endif
46
Paul Jakma457eb9a2006-07-27 19:59:58 +000047int kernel_add_route (struct prefix_ipv4 *a, struct in_addr *b, int c, int d)
48{ return 0; }
49
50int kernel_address_add_ipv4 (struct interface *a, struct connected *b)
Paul Jakmad9d00a62007-04-10 19:28:04 +000051{
52 zlog_debug ("%s", __func__);
Paul Jakmacb9e0ce2008-04-20 00:31:57 +010053 SET_FLAG (b->conf, ZEBRA_IFC_REAL);
Paul Jakmad9d00a62007-04-10 19:28:04 +000054 connected_add_ipv4 (a, 0, &b->address->u.prefix4, b->address->prefixlen,
55 (b->destination ? &b->destination->u.prefix4 : NULL),
56 NULL);
57 return 0;
58}
59
60int kernel_address_delete_ipv4 (struct interface *a, struct connected *b)
61{
62 zlog_debug ("%s", __func__);
63 connected_delete_ipv4 (a, 0, &b->address->u.prefix4, b->address->prefixlen,
64 (b->destination ? &b->destination->u.prefix4 : NULL));
65 return 0;
66}
Paul Jakma457eb9a2006-07-27 19:59:58 +000067
Feng Lu758fb8f2014-07-03 18:23:09 +080068void kernel_init (struct zebra_vrf *zvrf) { return; }
69void kernel_terminate (struct zebra_vrf *zvrf) { return; }
Doug VanLeuven327c4cd2012-12-14 14:58:30 +020070#ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
Paul Jakma457eb9a2006-07-27 19:59:58 +000071#pragma weak route_read = kernel_init
Doug VanLeuven327c4cd2012-12-14 14:58:30 +020072#else
Feng Lu758fb8f2014-07-03 18:23:09 +080073void route_read (struct zebra_vrf *zvrf) { return; }
Doug VanLeuven327c4cd2012-12-14 14:58:30 +020074#endif