blob: 16494497ccce43f743601f9474b2624c00bcf6e3 [file] [log] [blame]
Pablo Camarillofb380952016-12-07 18:34:18 +01001/*
2 * Copyright (c) 2015 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#ifndef __included_srv6_localsid_sample_h__
16#define __included_srv6_localsid_sample_h__
17
18#include <vnet/vnet.h>
19#include <vnet/ip/ip.h>
Pablo Camarillo5d73eec2017-04-24 17:51:56 +020020#include <vnet/srv6/sr.h>
21#include <vnet/srv6/sr_packet.h>
Pablo Camarillofb380952016-12-07 18:34:18 +010022
23#include <vppinfra/hash.h>
24#include <vppinfra/error.h>
25#include <vppinfra/elog.h>
26
27typedef struct {
28 /* API message ID base */
29 u16 msg_id_base;
30
31 /* convenience */
32 vlib_main_t * vlib_main;
33 vnet_main_t * vnet_main;
34
35 /* DPO type */
36 dpo_type_t srv6_localsid_sample_dpo_type;
37
38 /* SRv6 LocalSID behavior number */
39 u32 srv6_localsid_behavior_id;
40
41} srv6_localsid_sample_main_t;
42
43/*
44 * This is the memory that will be stored per each localsid
45 * the user instantiates
46 */
47typedef struct {
48 u32 fib_table; /* Stupid index used as an example.. */
49} srv6_localsid_sample_per_sid_memory_t ;
50
Dave Wallace71612d62017-10-24 01:32:41 -040051extern srv6_localsid_sample_main_t srv6_localsid_sample_main;
Pablo Camarillofb380952016-12-07 18:34:18 +010052
53format_function_t format_srv6_localsid_sample;
54unformat_function_t unformat_srv6_localsid_sample;
55
56void srv6_localsid_sample_dpo_lock (dpo_id_t * dpo);
57void srv6_localsid_sample_dpo_unlock (dpo_id_t * dpo);
58
59extern vlib_node_registration_t srv6_localsid_sample_node;
60
61#endif /* __included_sample_h__ */