aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/srv6/sr_types.api
diff options
context:
space:
mode:
Diffstat (limited to 'src/vnet/srv6/sr_types.api')
-rw-r--r--src/vnet/srv6/sr_types.api45
1 files changed, 45 insertions, 0 deletions
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,
+};