├── .gitignore ├── Android.mk ├── CONTRIBUTIONS ├── DPP ├── README ├── dpp-rest-server.py ├── stunnel-server.conf └── stunnel-server.psk ├── Makefile ├── P2P_device_discovery_req.txt ├── README ├── ap.c ├── atheros.c ├── basic.c ├── cmds_reg.c ├── dev.c ├── dhcp.c ├── dnssd.c ├── dpp-ca.py ├── dpp.c ├── e_loop.c ├── ftm.c ├── miracast.c ├── miracast.h ├── nan.c ├── nfc-status ├── nl80211_copy.h ├── p2p.c ├── p2p_usd.c ├── powerswitch.c ├── probe_req_P2P_Wildcard.txt ├── probe_req_wildcard.txt ├── qca-vendor_copy.h ├── scripts └── hs20-action.sh ├── server.c ├── sigma_dut.c ├── sigma_dut.h ├── sniffer-check-p2p-noa-duration.py ├── sniffer-control-field-check.py ├── sniffer-control-filter-capture.py ├── sniffer-get-field-value.py ├── sniffer-tshark-fields.txt ├── sniffer-tshark-frames.txt ├── sniffer-tshark-hasfields.txt ├── sniffer.c ├── sta.c ├── traffic.c ├── traffic_agent.c ├── tshark.py ├── uapsd_stream.c ├── utils.c ├── wlantest.c ├── wlantest_ctrl.h ├── wpa_ctrl.c ├── wpa_ctrl.h ├── wpa_helpers.c └── wpa_helpers.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | *~ 4 | sigma_dut 5 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/Android.mk -------------------------------------------------------------------------------- /CONTRIBUTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/CONTRIBUTIONS -------------------------------------------------------------------------------- /DPP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/DPP/README -------------------------------------------------------------------------------- /DPP/dpp-rest-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/DPP/dpp-rest-server.py -------------------------------------------------------------------------------- /DPP/stunnel-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/DPP/stunnel-server.conf -------------------------------------------------------------------------------- /DPP/stunnel-server.psk: -------------------------------------------------------------------------------- 1 | dpp-rest:00112233445566778899aabbccddeeff 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/Makefile -------------------------------------------------------------------------------- /P2P_device_discovery_req.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/P2P_device_discovery_req.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/README -------------------------------------------------------------------------------- /ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/ap.c -------------------------------------------------------------------------------- /atheros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/atheros.c -------------------------------------------------------------------------------- /basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/basic.c -------------------------------------------------------------------------------- /cmds_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/cmds_reg.c -------------------------------------------------------------------------------- /dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/dev.c -------------------------------------------------------------------------------- /dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/dhcp.c -------------------------------------------------------------------------------- /dnssd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/dnssd.c -------------------------------------------------------------------------------- /dpp-ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/dpp-ca.py -------------------------------------------------------------------------------- /dpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/dpp.c -------------------------------------------------------------------------------- /e_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/e_loop.c -------------------------------------------------------------------------------- /ftm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/ftm.c -------------------------------------------------------------------------------- /miracast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/miracast.c -------------------------------------------------------------------------------- /miracast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/miracast.h -------------------------------------------------------------------------------- /nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/nan.c -------------------------------------------------------------------------------- /nfc-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/nfc-status -------------------------------------------------------------------------------- /nl80211_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/nl80211_copy.h -------------------------------------------------------------------------------- /p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/p2p.c -------------------------------------------------------------------------------- /p2p_usd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/p2p_usd.c -------------------------------------------------------------------------------- /powerswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/powerswitch.c -------------------------------------------------------------------------------- /probe_req_P2P_Wildcard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/probe_req_P2P_Wildcard.txt -------------------------------------------------------------------------------- /probe_req_wildcard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/probe_req_wildcard.txt -------------------------------------------------------------------------------- /qca-vendor_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/qca-vendor_copy.h -------------------------------------------------------------------------------- /scripts/hs20-action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/scripts/hs20-action.sh -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/server.c -------------------------------------------------------------------------------- /sigma_dut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sigma_dut.c -------------------------------------------------------------------------------- /sigma_dut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sigma_dut.h -------------------------------------------------------------------------------- /sniffer-check-p2p-noa-duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer-check-p2p-noa-duration.py -------------------------------------------------------------------------------- /sniffer-control-field-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer-control-field-check.py -------------------------------------------------------------------------------- /sniffer-control-filter-capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer-control-filter-capture.py -------------------------------------------------------------------------------- /sniffer-get-field-value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer-get-field-value.py -------------------------------------------------------------------------------- /sniffer-tshark-fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer-tshark-fields.txt -------------------------------------------------------------------------------- /sniffer-tshark-frames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer-tshark-frames.txt -------------------------------------------------------------------------------- /sniffer-tshark-hasfields.txt: -------------------------------------------------------------------------------- 1 | NoA wifi_p2p.type == 12 2 | -------------------------------------------------------------------------------- /sniffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sniffer.c -------------------------------------------------------------------------------- /sta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/sta.c -------------------------------------------------------------------------------- /traffic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/traffic.c -------------------------------------------------------------------------------- /traffic_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/traffic_agent.c -------------------------------------------------------------------------------- /tshark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/tshark.py -------------------------------------------------------------------------------- /uapsd_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/uapsd_stream.c -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/utils.c -------------------------------------------------------------------------------- /wlantest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/wlantest.c -------------------------------------------------------------------------------- /wlantest_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/wlantest_ctrl.h -------------------------------------------------------------------------------- /wpa_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/wpa_ctrl.c -------------------------------------------------------------------------------- /wpa_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/wpa_ctrl.h -------------------------------------------------------------------------------- /wpa_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/wpa_helpers.c -------------------------------------------------------------------------------- /wpa_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qca/sigma-dut/HEAD/wpa_helpers.h --------------------------------------------------------------------------------