blob: f9c0a74bedbdaec50a42739623c167ebcbfb3c0d [file] [log] [blame]
Neale Ranns097fa662018-05-01 05:17:55 -07001/*
2 * Copyright (c) 2018 Cisco and/or its affiliates.
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
16#ifndef __MFIB_API_H__
17#define __MFIB_API_H__
18
19#include <vnet/mfib/mfib_types.h>
20
21/**
22 * Forward declare the API type, no need to include the generated api headers
23 */
24struct _vl_api_mfib_path;
25
26/**
27 * Encode and decode functions from the API types to internal types
28 */
29extern void mfib_api_path_encode(const fib_route_path_t *in,
30 struct _vl_api_mfib_path *out);
31extern int mfib_api_path_decode(struct _vl_api_mfib_path *in,
32 fib_route_path_t *out);
33
34extern int mfib_api_table_id_decode(fib_protocol_t fproto,
35 u32 table_id,
36 u32 *fib_index);
37
38#endif /* __MFIB_API_H__ */