]> git.proxmox.com Git - mirror_ovs.git/blame - lib/route-table-stub.c
cirrus: Use FreeBSD 12.2.
[mirror_ovs.git] / lib / route-table-stub.c
CommitLineData
41ca1e0a 1/* Copyright (c) 2012, 2013, 2014 Nicira, Inc.
361906b1
EJ
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License. */
14
15#include <config.h>
361906b1
EJ
16
17#include "compiler.h"
2d2b28d5
YT
18#include "ovs-router.h"
19#include "route-table.h"
361906b1
EJ
20
21bool
ec6c5379
PS
22route_table_fallback_lookup(const struct in6_addr *ip6_dst OVS_UNUSED,
23 char name[] OVS_UNUSED,
24 struct in6_addr *gw6)
361906b1 25{
ec6c5379 26 *gw6 = in6addr_any;
361906b1
EJ
27 return false;
28}
29
41ca1e0a
AW
30uint64_t
31route_table_get_change_seq(void)
32{
33 return 0;
34}
35
361906b1 36void
b772066f 37route_table_init(void)
361906b1 38{
88ffdc93 39 ovs_router_init();
361906b1
EJ
40}
41
42void
43route_table_run(void)
44{
45}
11e26106
EJ
46
47void
48route_table_wait(void)
49{
50}