FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
qos_types.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 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 
16 #ifndef __VOM_QOS_TYPES_H__
17 #define __VOM_QOS_TYPES_H__
18 
19 #include "vom/enum_base.hpp"
20 
21 namespace VOM {
22 /**
23  * Types belonging to QoS
24  */
25 namespace QoS {
26 
27 typedef uint8_t bits_t;
28 
29 /**
30  * The Source of the QoS classification (i.e. which header the bits are
31  * associated with).
32  */
33 class source_t : public enum_base<source_t>
34 {
35 public:
36  const static source_t EXT;
37  const static source_t VLAN;
38  const static source_t MPLS;
39  const static source_t IP;
40 
41 private:
42  /**
43  * Private constructor taking the value and the string name
44  */
45  source_t(int v, const std::string& s);
46 };
47 
48 }; // namesapce QoS
49 
50 }; // namespace VOM
51 
52 /*
53  * fd.io coding-style-patch-verification: ON
54  *
55  * Local Variables:
56  * eval: (c-set-style "mozilla")
57  * End:
58  */
59 
60 #endif
A template base class for all enum types.
Definition: enum_base.hpp:30
uint8_t bits_t
Definition: qos_types.hpp:27
static const source_t IP
Definition: qos_types.hpp:39
static const source_t MPLS
Definition: qos_types.hpp:38
The Source of the QoS classification (i.e.
Definition: qos_types.hpp:33
static const source_t VLAN
Definition: qos_types.hpp:37
static const source_t EXT
Definition: qos_types.hpp:36
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19