]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Add new traffic type values for flow report vendor attribute
authorKiran Kumar Lokere <quic_klokere@quicinc.com>
Mon, 20 May 2024 05:07:17 +0000 (22:07 -0700)
committerJouni Malinen <j@w1.fi>
Fri, 7 Jun 2024 12:46:36 +0000 (15:46 +0300)
Define new traffic type values for
QCA_WLAN_VENDOR_ATTR_FLOW_STATS_TRAFFIC_TYPE attribute.

Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
src/common/qca-vendor.h

index 5c4596fde8250338892dc1c27856555e1a779957..3161cbe61efce409f794decc653bf6c5ba539618 100644 (file)
@@ -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,
 };
 
 /**