]> git.proxmox.com Git - mirror_ovs.git/blame - lib/route-table-stub.c
AUTHORS: Add Shu Shen.
[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>
16#include "route-table.h"
17
18#include "compiler.h"
19
20bool
5167d6b0
EE
21ovs_router_lookup(ovs_be32 ip_dst OVS_UNUSED, char output_bridge[] OVS_UNUSED,
22 ovs_be32 *gw)
361906b1 23{
d9b4ebc5 24 *gw = 0;
361906b1
EJ
25 return false;
26}
27
fb393993
PS
28void
29ovs_router_unixctl_register(void)
30{
31}
32
41ca1e0a
AW
33uint64_t
34route_table_get_change_seq(void)
35{
36 return 0;
37}
38
361906b1
EJ
39void
40route_table_register(void)
41{
42}
43
44void
45route_table_unregister(void)
46{
47}
48
49void
50route_table_run(void)
51{
52}
11e26106
EJ
53
54void
55route_table_wait(void)
56{
57}