]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Add new traffic type value for flow report vendor attribute
authorPankaj Rawat <panraw@qti.qualcomm.com>
Wed, 10 Dec 2025 09:47:39 +0000 (15:17 +0530)
committerJouni Malinen <j@w1.fi>
Mon, 15 Dec 2025 16:32:26 +0000 (18:32 +0200)
Define new traffic type value for
QCA_WLAN_VENDOR_ATTR_FLOW_STATS_TRAFFIC_TYPE attribute to
detect livestream traffic.

Signed-off-by: Pankaj Rawat <panraw@qti.qualcomm.com>
src/common/qca-vendor.h

index abe2d4420f8c846ee22de13b4fd88d47ee296928..7bb7a1b5e4bdf075e226e45aad6c8e6f94a51a53 100644 (file)
@@ -19077,6 +19077,7 @@ enum qca_wlan_vendor_attr_ap_suspend {
  * @QCA_TRAFFIC_TYPE_INVALID: Invalid traffic type
  * @QCA_TRAFFIC_TYPE_BROWSING: Traffic type is browsing website
  * @QCA_TRAFFIC_TYPE_APERIODIC_BURSTS: Traffic type is aperiodic bursts
+ * @QCA_TRAFFIC_TYPE_LIVESTREAM: Traffic type is livestream
  */
 enum qca_traffic_type {
        QCA_TRAFFIC_TYPE_STREAMING = 0,
@@ -19088,6 +19089,7 @@ enum qca_traffic_type {
        QCA_TRAFFIC_TYPE_INVALID = 6,
        QCA_TRAFFIC_TYPE_BROWSING = 7,
        QCA_TRAFFIC_TYPE_APERIODIC_BURSTS = 8,
+       QCA_TRAFFIC_TYPE_LIVESTREAM = 9,
 };
 
 /**