FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
qos.api
Go to the documentation of this file.
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /** \file
18 
19  This file defines QoS record and mark API messages which are generally
20  called through a shared memory interface.
21 */
22 
23 option version = "1.0.0";
24 
26 {
31 };
32 
33 /** \brief Enable/Disable QoS recording
34  The QoS bits from the packet at the specified input layer are copied
35  into the packet. Recording should be used in conjunction with marking
36  @param sw_if_index - The interface on which recording is enabled.
37  @param enable - enable=1 or disable the feature
38  @param input_source - The input source/layer at which the QoS bits
39  are copied from the packet. See qos_source_t.
40 */
41 autoreply define qos_record_enable_disable
42 {
46  vl_api_qos_source_t input_source;
48 };
49 
50 /** \brief A row within a QoS map
51  Each value translates from an input value to an output.
52 */
53 typeonly define qos_egress_map_row
54 {
55  u8 outputs[256];
56 };
57 
58 /** \brief Update a QoS Map
59  A QoS map, translates from the QoS value in the packet set by the 'record'
60  feature, to the value used for output in the 'mark' feature.
61  There is one row in the map for each input/record source.
62  The MAP is then applied to the egress interface at for a given output source
63  @param map_id - client provided identifier for the map
64  @param rows - one row (per-input source) of output values
65 */
66 autoreply define qos_egress_map_update
67 {
72 };
73 
74 /** \brief Delete a Qos Map
75  @param map_id - ID of the map to delete
76 */
77 autoreply define qos_egress_map_delete
78 {
82 };
83 
84 /** \brief Enable/Disable QoS marking
85  The QoS bits from the packet are mapped (using the desired egress map)
86  into the header of the 'output-source'. Marking should be used in
87  conjunction with recording
88  @param sw_if_index - The interface on which recording is enabled.
89  @param enable - enable=1 or disable the feature
90  @param output_source - The output source/layer at which the QoS bits
91  are written into the packet. See qos_source_t.
92  @param map_id - The ID of the MAP in which the translation from input
93  to output is performed.
94 */
95 autoreply define qos_mark_enable_disable
96 {
101  vl_api_qos_source_t output_source;
103 };
104 
105 /*
106  * Local Variables:
107  * eval: (c-set-style "gnu")
108  * End:
109  */
vl_api_qos_source_t output_source
Definition: qos.api:101
qos_source
Definition: qos.api:25
unsigned char u8
Definition: types.h:56
void qos_egress_map_delete(qos_egress_map_id_t mid)
unsigned int u32
Definition: types.h:88
void qos_egress_map_update(qos_egress_map_id_t mid, qos_source_t input_source, qos_bits_t *values)
Add a qos-egress map to an interface.
option version
Definition: qos.api:23
A row within a QoS map Each value translates from an input value to an output.
Definition: qos.api:53
vl_api_qos_source_t input_source
Definition: qos.api:46