]> git.proxmox.com Git - mirror_frr.git/blob - zebra/tc_socket.c
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / zebra / tc_socket.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Zebra Traffic Control (TC) interaction with the kernel using socket.
4 *
5 * Copyright (C) 2022 Shichu Yang
6 */
7
8 #include <zebra.h>
9
10 #ifndef HAVE_NETLINK
11
12 #include "lib_errors.h"
13
14 #include "zebra/rt.h"
15 #include "zebra/zebra_dplane.h"
16 #include "zebra/zebra_errors.h"
17 #include "zebra/zebra_tc.h"
18
19 enum zebra_dplane_result kernel_tc_update(struct zebra_dplane_ctx *ctx)
20 {
21 flog_err(EC_LIB_UNAVAILABLE, "%s not Implemented for this platform",
22 __func__);
23 return ZEBRA_DPLANE_REQUEST_FAILURE;
24 }
25
26 #endif /* !HAVE_NETLINK */