From 0938eba153ed20b8a32b7278ed6301b45ce257cc Mon Sep 17 00:00:00 2001 From: Jakub Grajciar Date: Wed, 4 Mar 2020 13:08:27 +0100 Subject: sr: srv6 API cleanup Use consistent API types. Type: fix Signed-off-by: Jakub Grajciar Change-Id: I3c348ad2fca8bb3d9a246af7a2aa9dc9c33f57c3 Signed-off-by: Jakub Grajciar --- src/vnet/srv6/sr_types.api | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/vnet/srv6/sr_types.api (limited to 'src/vnet/srv6/sr_types.api') diff --git a/src/vnet/srv6/sr_types.api b/src/vnet/srv6/sr_types.api new file mode 100644 index 00000000000..ba99a325544 --- /dev/null +++ b/src/vnet/srv6/sr_types.api @@ -0,0 +1,45 @@ +/* Hey Emacs use -*- mode: C -*- */ +/* + * Copyright (c) 2015-2016 Cisco and/or its affiliates. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +enum sr_policy_op : u8 +{ + SR_POLICY_OP_API_NONE = 0, + SR_POLICY_OP_API_ADD = 1, + SR_POLICY_OP_API_DEL = 2, + SR_POLICY_OP_API_MOD = 3, + +}; + +enum sr_behavior : u8 +{ + SR_BEHAVIOR_API_END = 1, + SR_BEHAVIOR_API_X = 2, + SR_BEHAVIOR_API_T = 3, + SR_BEHAVIOR_API_D_FIRST = 4, /* Unused. Separator in between regular and D */ + SR_BEHAVIOR_API_DX2 = 5, + SR_BEHAVIOR_API_DX6 = 6, + SR_BEHAVIOR_API_DX4 = 7, + SR_BEHAVIOR_API_DT6 = 8, + SR_BEHAVIOR_API_DT4 = 9, + SR_BEHAVIOR_API_LAST = 10, /* Must always be the last one */ +}; + +enum sr_steer : u8 +{ + SR_STEER_API_L2 = 2, + SR_STEER_API_IPV4 = 4, + SR_STEER_API_IPV6 = 6, +}; -- cgit 1.2.3-korg