Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 1 | /* |
| 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 Camarillo | 5d73eec | 2017-04-24 17:51:56 +0200 | [diff] [blame] | 20 | #include <vnet/srv6/sr.h> |
| 21 | #include <vnet/srv6/sr_packet.h> |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 22 | |
| 23 | #include <vppinfra/hash.h> |
| 24 | #include <vppinfra/error.h> |
| 25 | #include <vppinfra/elog.h> |
| 26 | |
| 27 | typedef 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 | */ |
| 47 | typedef struct { |
| 48 | u32 fib_table; /* Stupid index used as an example.. */ |
| 49 | } srv6_localsid_sample_per_sid_memory_t ; |
| 50 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 51 | extern srv6_localsid_sample_main_t srv6_localsid_sample_main; |
Pablo Camarillo | fb38095 | 2016-12-07 18:34:18 +0100 | [diff] [blame] | 52 | |
| 53 | format_function_t format_srv6_localsid_sample; |
| 54 | unformat_function_t unformat_srv6_localsid_sample; |
| 55 | |
| 56 | void srv6_localsid_sample_dpo_lock (dpo_id_t * dpo); |
| 57 | void srv6_localsid_sample_dpo_unlock (dpo_id_t * dpo); |
| 58 | |
| 59 | extern vlib_node_registration_t srv6_localsid_sample_node; |
| 60 | |
| 61 | #endif /* __included_sample_h__ */ |