Add new traffic type values for flow report vendor attribute
Define new traffic type values for QCA_WLAN_VENDOR_ATTR_FLOW_STATS_TRAFFIC_TYPE attribute. Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
parent
e4e91f5320
commit
a5ee11e025
1 changed files with 6 additions and 0 deletions
|
@ -17338,12 +17338,18 @@ enum qca_wlan_vendor_attr_ap_suspend {
|
|||
* @QCA_TRAFFIC_TYPE_GAMING: Traffic type is gaming
|
||||
* @QCA_TRAFFIC_TYPE_VOICE_CALL: Traffic type is a voice call
|
||||
* @QCA_TRAFFIC_TYPE_VIDEO_CALL: Traffic type is a video call
|
||||
* @QCA_TRAFFIC_TYPE_SCREEN_SHARE: Traffic type is screen share
|
||||
* @QCA_TRAFFIC_TYPE_UNKNOWN: Traffic type is unknown
|
||||
* @QCA_TRAFFIC_TYPE_INVALID: Invalid traffic type
|
||||
*/
|
||||
enum qca_traffic_type {
|
||||
QCA_TRAFFIC_TYPE_STREAMING = 0,
|
||||
QCA_TRAFFIC_TYPE_GAMING = 1,
|
||||
QCA_TRAFFIC_TYPE_VOICE_CALL = 2,
|
||||
QCA_TRAFFIC_TYPE_VIDEO_CALL = 3,
|
||||
QCA_TRAFFIC_TYPE_SCREEN_SHARE = 4,
|
||||
QCA_TRAFFIC_TYPE_UNKNOWN = 5,
|
||||
QCA_TRAFFIC_TYPE_INVALID = 6,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue