]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_mpls_null.c
zebra: Add knowledge of request success/failure for pbr rules
[mirror_frr.git] / zebra / zebra_mpls_null.c
CommitLineData
7fc02572
RW
1/*
2 * Copyright (C) 2016 by Open Source Routing.
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 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
7fc02572
RW
19 */
20
7758e3f3 21#include <zebra.h>
be0dba35 22#include "zebra/rt.h"
7758e3f3 23#include "zebra/zebra_mpls.h"
24
ddfeb486
DL
25#if !defined(HAVE_NETLINK) && !defined(OPEN_BSD)
26
4a83e7a0 27void kernel_add_lsp(zebra_lsp_t *lsp)
d62a17ae 28{
4a83e7a0 29 return;
d62a17ae 30}
4a83e7a0 31void kernel_upd_lsp(zebra_lsp_t *lsp)
d62a17ae 32{
4a83e7a0 33 return;
d62a17ae 34}
4a83e7a0 35void kernel_del_lsp(zebra_lsp_t *lsp)
d62a17ae 36{
4a83e7a0 37 return;
d62a17ae 38}
39int mpls_kernel_init(void)
40{
41 return -1;
42};
ddfeb486
DL
43
44#endif /* !defined(HAVE_NETLINK) && !defined(OPEN_BSD) */