From a11db8194cab7530a41f3ae8196ec31052a12748 Mon Sep 17 00:00:00 2001 From: "Poddar, Siddarth" Date: Mon, 29 Jan 2018 17:19:46 +0530 Subject: [PATCH] qcacmn: Extend wmi interface command to support other connectivity stats Extend wmi interface command to support other connectivity check stats(ICMPv4 and tcp). Change-Id: I881aaeab6e3e1f36b7153630b87a07019660d896 CRs-Fixed: 2168412 --- wmi_unified_param.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/wmi_unified_param.h b/wmi_unified_param.h index a95c22017f..348d0f477f 100644 --- a/wmi_unified_param.h +++ b/wmi_unified_param.h @@ -8083,12 +8083,22 @@ struct wmi_btm_config { * @flag: enable/disable stats * @pkt_type: type of packet(1 - arp) * @ip_addr: subnet ipv4 address in case of encrypted packets + * @pkt_type_bitmap: pkt bitmap + * @tcp_src_port: tcp src port for pkt tracking + * @tcp_dst_port: tcp dst port for pkt tracking + * @icmp_ipv4: target ipv4 address to track ping packets + * @reserved: reserved */ struct set_arp_stats { uint32_t vdev_id; uint8_t flag; uint8_t pkt_type; uint32_t ip_addr; + uint32_t pkt_type_bitmap; + uint32_t tcp_src_port; + uint32_t tcp_dst_port; + uint32_t icmp_ipv4; + uint32_t reserved; }; /**