├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── codeql-analysis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cmake ├── find_cpprest.cmake ├── find_git.cmake ├── find_gpiod.cmake ├── find_jsonc.cmake ├── find_openssl.cmake ├── find_systemd.cmake ├── find_wpa_client.cmake └── security_hardening.cmake ├── docs └── ztppenguin.png ├── external ├── cpprestsdk │ └── CMakeLists.txt └── hostap │ ├── .config │ ├── 0001-Add-helper-function-to-read-file-link-targets.patch │ ├── 0002-Use-wpa-conf-file-link-target-for-writing.patch │ ├── 0003-Generate-an-event-when-a-network-is-added-or-removed.patch │ ├── 0004-DPP-Add-Configuration-Request-timeout-in-hostapd.patch │ ├── 0005-DPP-Add-Configuration-Request-timeout-in-wpas.patch │ ├── 0006-Make-tls_engine_load_dynamic_generic-externally-acce.patch │ ├── 0007-Drop-tls-prefix-from-tls_engine_load_dynamic_generic.patch │ ├── 0008-DPP-Allow-loading-bootstrap-keys-using-an-OpenSSL-en.patch │ └── CMakeLists.txt ├── samples └── ztpd │ └── config │ ├── config-bootstrapinfo.json │ ├── config-configurator.json │ ├── config-configurator.schema.json │ ├── config-enrollee.json │ ├── config-enrollee.schema.json │ ├── config.json │ └── config.schema.json ├── scripts ├── ztp-keyinfo.sh └── ztp-release.sh └── src ├── CMakeLists.txt ├── core ├── CMakeLists.txt ├── biproviders │ ├── CMakeLists.txt │ ├── azuredps │ │ ├── CMakeLists.txt │ │ ├── azure_dps_service_client.cpp │ │ ├── azure_dps_service_client.h │ │ ├── azure_dps_service_client_log.h │ │ ├── azure_dps_service_client_proxy.cpp │ │ ├── azure_dps_service_client_proxy.h │ │ ├── bootstrap_info_provider_azure_dps.c │ │ ├── bootstrap_info_provider_azure_dps.h │ │ ├── bootstrap_info_provider_azure_dps_config.c │ │ ├── bootstrap_info_provider_azure_dps_config.h │ │ ├── sample.cpp │ │ └── sample_input.h │ ├── bootstrap_info_provider.c │ ├── bootstrap_info_provider.h │ ├── bootstrap_info_provider_private.h │ ├── bootstrap_info_provider_settings.c │ ├── bootstrap_info_provider_settings.h │ └── file │ │ ├── CMakeLists.txt │ │ ├── bootstrap_info_provider_file.c │ │ ├── bootstrap_info_provider_file.h │ │ ├── bootstrap_info_provider_file_config.c │ │ └── bootstrap_info_provider_file_config.h ├── ztp.c ├── ztp.h ├── ztp_configurator.c ├── ztp_configurator.h ├── ztp_configurator_config.c ├── ztp_configurator_config.h ├── ztp_enrollee.c ├── ztp_enrollee.h ├── ztp_enrollee_config.c ├── ztp_enrollee_config.h ├── ztp_settings.c ├── ztp_settings.h ├── ztp_version.h ├── ztp_wpa_supplicant.c └── ztp_wpa_supplicant.h ├── dbus ├── CMakeLists.txt ├── dbus_common.h ├── dbus_message_helpers.c ├── dbus_message_helpers.h ├── ztp_dbus_client.c ├── ztp_dbus_client.h ├── ztp_dbus_configurator.c ├── ztp_dbus_configurator.h ├── ztp_dbus_network_configuration.c ├── ztp_dbus_network_configuration.h ├── ztp_dbus_server.c └── ztp_dbus_server.h ├── systemd ├── CMakeLists.txt ├── ztp_systemd.c └── ztp_systemd.h ├── utils ├── CMakeLists.txt ├── event_loop.c ├── event_loop.h ├── file_utils.c ├── file_utils.h ├── json_parse.c ├── json_parse.h ├── led_ctrl.c ├── led_ctrl.h ├── string_utils.c ├── string_utils.h ├── string_utils.hpp ├── time_utils.c ├── time_utils.h ├── userspace │ └── linux │ │ ├── compiler.h │ │ ├── kernel.h │ │ ├── list.h │ │ ├── poison.h │ │ └── types.h └── ztp_log.h ├── wifi ├── CMakeLists.txt ├── dpp.c └── dpp.h ├── wpas ├── CMakeLists.txt ├── wpa_controller.c ├── wpa_controller.h ├── wpa_controller_watcher.c ├── wpa_controller_watcher.h ├── wpa_core.c ├── wpa_core.h ├── wpa_supplicant.c └── wpa_supplicant.h └── ztpd ├── CMakeLists.txt ├── main.c ├── systemd ├── CMakeLists.txt ├── com.microsoft.ztp1.service └── ztpd.service.in ├── ztpd.c ├── ztpd.h ├── ztpd_ui.c └── ztpd_ui.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/azure-percept-wi-fi 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cmake/find_cpprest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/cmake/find_cpprest.cmake -------------------------------------------------------------------------------- /cmake/find_git.cmake: -------------------------------------------------------------------------------- 1 | 2 | find_package(Git REQUIRED) 3 | -------------------------------------------------------------------------------- /cmake/find_gpiod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/cmake/find_gpiod.cmake -------------------------------------------------------------------------------- /cmake/find_jsonc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/cmake/find_jsonc.cmake -------------------------------------------------------------------------------- /cmake/find_openssl.cmake: -------------------------------------------------------------------------------- 1 | 2 | find_package(OpenSSL) -------------------------------------------------------------------------------- /cmake/find_systemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/cmake/find_systemd.cmake -------------------------------------------------------------------------------- /cmake/find_wpa_client.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/cmake/find_wpa_client.cmake -------------------------------------------------------------------------------- /cmake/security_hardening.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/cmake/security_hardening.cmake -------------------------------------------------------------------------------- /docs/ztppenguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/docs/ztppenguin.png -------------------------------------------------------------------------------- /external/cpprestsdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/cpprestsdk/CMakeLists.txt -------------------------------------------------------------------------------- /external/hostap/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/.config -------------------------------------------------------------------------------- /external/hostap/0001-Add-helper-function-to-read-file-link-targets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0001-Add-helper-function-to-read-file-link-targets.patch -------------------------------------------------------------------------------- /external/hostap/0002-Use-wpa-conf-file-link-target-for-writing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0002-Use-wpa-conf-file-link-target-for-writing.patch -------------------------------------------------------------------------------- /external/hostap/0003-Generate-an-event-when-a-network-is-added-or-removed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0003-Generate-an-event-when-a-network-is-added-or-removed.patch -------------------------------------------------------------------------------- /external/hostap/0004-DPP-Add-Configuration-Request-timeout-in-hostapd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0004-DPP-Add-Configuration-Request-timeout-in-hostapd.patch -------------------------------------------------------------------------------- /external/hostap/0005-DPP-Add-Configuration-Request-timeout-in-wpas.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0005-DPP-Add-Configuration-Request-timeout-in-wpas.patch -------------------------------------------------------------------------------- /external/hostap/0006-Make-tls_engine_load_dynamic_generic-externally-acce.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0006-Make-tls_engine_load_dynamic_generic-externally-acce.patch -------------------------------------------------------------------------------- /external/hostap/0007-Drop-tls-prefix-from-tls_engine_load_dynamic_generic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0007-Drop-tls-prefix-from-tls_engine_load_dynamic_generic.patch -------------------------------------------------------------------------------- /external/hostap/0008-DPP-Allow-loading-bootstrap-keys-using-an-OpenSSL-en.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/0008-DPP-Allow-loading-bootstrap-keys-using-an-OpenSSL-en.patch -------------------------------------------------------------------------------- /external/hostap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/external/hostap/CMakeLists.txt -------------------------------------------------------------------------------- /samples/ztpd/config/config-bootstrapinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config-bootstrapinfo.json -------------------------------------------------------------------------------- /samples/ztpd/config/config-configurator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config-configurator.json -------------------------------------------------------------------------------- /samples/ztpd/config/config-configurator.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config-configurator.schema.json -------------------------------------------------------------------------------- /samples/ztpd/config/config-enrollee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config-enrollee.json -------------------------------------------------------------------------------- /samples/ztpd/config/config-enrollee.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config-enrollee.schema.json -------------------------------------------------------------------------------- /samples/ztpd/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config.json -------------------------------------------------------------------------------- /samples/ztpd/config/config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/samples/ztpd/config/config.schema.json -------------------------------------------------------------------------------- /scripts/ztp-keyinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/scripts/ztp-keyinfo.sh -------------------------------------------------------------------------------- /scripts/ztp-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/scripts/ztp-release.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/biproviders/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/azure_dps_service_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/azure_dps_service_client.cpp -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/azure_dps_service_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/azure_dps_service_client.h -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/azure_dps_service_client_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/azure_dps_service_client_log.h -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/azure_dps_service_client_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/azure_dps_service_client_proxy.cpp -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/azure_dps_service_client_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/azure_dps_service_client_proxy.h -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps.c -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps.h -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps_config.c -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/bootstrap_info_provider_azure_dps_config.h -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/sample.cpp -------------------------------------------------------------------------------- /src/core/biproviders/azuredps/sample_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/azuredps/sample_input.h -------------------------------------------------------------------------------- /src/core/biproviders/bootstrap_info_provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/bootstrap_info_provider.c -------------------------------------------------------------------------------- /src/core/biproviders/bootstrap_info_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/bootstrap_info_provider.h -------------------------------------------------------------------------------- /src/core/biproviders/bootstrap_info_provider_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/bootstrap_info_provider_private.h -------------------------------------------------------------------------------- /src/core/biproviders/bootstrap_info_provider_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/bootstrap_info_provider_settings.c -------------------------------------------------------------------------------- /src/core/biproviders/bootstrap_info_provider_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/bootstrap_info_provider_settings.h -------------------------------------------------------------------------------- /src/core/biproviders/file/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/file/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/biproviders/file/bootstrap_info_provider_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/file/bootstrap_info_provider_file.c -------------------------------------------------------------------------------- /src/core/biproviders/file/bootstrap_info_provider_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/file/bootstrap_info_provider_file.h -------------------------------------------------------------------------------- /src/core/biproviders/file/bootstrap_info_provider_file_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/file/bootstrap_info_provider_file_config.c -------------------------------------------------------------------------------- /src/core/biproviders/file/bootstrap_info_provider_file_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/biproviders/file/bootstrap_info_provider_file_config.h -------------------------------------------------------------------------------- /src/core/ztp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp.c -------------------------------------------------------------------------------- /src/core/ztp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp.h -------------------------------------------------------------------------------- /src/core/ztp_configurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_configurator.c -------------------------------------------------------------------------------- /src/core/ztp_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_configurator.h -------------------------------------------------------------------------------- /src/core/ztp_configurator_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_configurator_config.c -------------------------------------------------------------------------------- /src/core/ztp_configurator_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_configurator_config.h -------------------------------------------------------------------------------- /src/core/ztp_enrollee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_enrollee.c -------------------------------------------------------------------------------- /src/core/ztp_enrollee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_enrollee.h -------------------------------------------------------------------------------- /src/core/ztp_enrollee_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_enrollee_config.c -------------------------------------------------------------------------------- /src/core/ztp_enrollee_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_enrollee_config.h -------------------------------------------------------------------------------- /src/core/ztp_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_settings.c -------------------------------------------------------------------------------- /src/core/ztp_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_settings.h -------------------------------------------------------------------------------- /src/core/ztp_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_version.h -------------------------------------------------------------------------------- /src/core/ztp_wpa_supplicant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_wpa_supplicant.c -------------------------------------------------------------------------------- /src/core/ztp_wpa_supplicant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/core/ztp_wpa_supplicant.h -------------------------------------------------------------------------------- /src/dbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/CMakeLists.txt -------------------------------------------------------------------------------- /src/dbus/dbus_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/dbus_common.h -------------------------------------------------------------------------------- /src/dbus/dbus_message_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/dbus_message_helpers.c -------------------------------------------------------------------------------- /src/dbus/dbus_message_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/dbus_message_helpers.h -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_client.c -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_client.h -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_configurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_configurator.c -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_configurator.h -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_network_configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_network_configuration.c -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_network_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_network_configuration.h -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_server.c -------------------------------------------------------------------------------- /src/dbus/ztp_dbus_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/dbus/ztp_dbus_server.h -------------------------------------------------------------------------------- /src/systemd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/systemd/CMakeLists.txt -------------------------------------------------------------------------------- /src/systemd/ztp_systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/systemd/ztp_systemd.c -------------------------------------------------------------------------------- /src/systemd/ztp_systemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/systemd/ztp_systemd.h -------------------------------------------------------------------------------- /src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/event_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/event_loop.c -------------------------------------------------------------------------------- /src/utils/event_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/event_loop.h -------------------------------------------------------------------------------- /src/utils/file_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/file_utils.c -------------------------------------------------------------------------------- /src/utils/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/file_utils.h -------------------------------------------------------------------------------- /src/utils/json_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/json_parse.c -------------------------------------------------------------------------------- /src/utils/json_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/json_parse.h -------------------------------------------------------------------------------- /src/utils/led_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/led_ctrl.c -------------------------------------------------------------------------------- /src/utils/led_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/led_ctrl.h -------------------------------------------------------------------------------- /src/utils/string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/string_utils.c -------------------------------------------------------------------------------- /src/utils/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/string_utils.h -------------------------------------------------------------------------------- /src/utils/string_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/string_utils.hpp -------------------------------------------------------------------------------- /src/utils/time_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/time_utils.c -------------------------------------------------------------------------------- /src/utils/time_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/time_utils.h -------------------------------------------------------------------------------- /src/utils/userspace/linux/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/userspace/linux/compiler.h -------------------------------------------------------------------------------- /src/utils/userspace/linux/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/userspace/linux/kernel.h -------------------------------------------------------------------------------- /src/utils/userspace/linux/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/userspace/linux/list.h -------------------------------------------------------------------------------- /src/utils/userspace/linux/poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/userspace/linux/poison.h -------------------------------------------------------------------------------- /src/utils/userspace/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/userspace/linux/types.h -------------------------------------------------------------------------------- /src/utils/ztp_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/utils/ztp_log.h -------------------------------------------------------------------------------- /src/wifi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wifi/CMakeLists.txt -------------------------------------------------------------------------------- /src/wifi/dpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wifi/dpp.c -------------------------------------------------------------------------------- /src/wifi/dpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wifi/dpp.h -------------------------------------------------------------------------------- /src/wpas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/CMakeLists.txt -------------------------------------------------------------------------------- /src/wpas/wpa_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_controller.c -------------------------------------------------------------------------------- /src/wpas/wpa_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_controller.h -------------------------------------------------------------------------------- /src/wpas/wpa_controller_watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_controller_watcher.c -------------------------------------------------------------------------------- /src/wpas/wpa_controller_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_controller_watcher.h -------------------------------------------------------------------------------- /src/wpas/wpa_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_core.c -------------------------------------------------------------------------------- /src/wpas/wpa_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_core.h -------------------------------------------------------------------------------- /src/wpas/wpa_supplicant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_supplicant.c -------------------------------------------------------------------------------- /src/wpas/wpa_supplicant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/wpas/wpa_supplicant.h -------------------------------------------------------------------------------- /src/ztpd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/CMakeLists.txt -------------------------------------------------------------------------------- /src/ztpd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/main.c -------------------------------------------------------------------------------- /src/ztpd/systemd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/systemd/CMakeLists.txt -------------------------------------------------------------------------------- /src/ztpd/systemd/com.microsoft.ztp1.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/systemd/com.microsoft.ztp1.service -------------------------------------------------------------------------------- /src/ztpd/systemd/ztpd.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/systemd/ztpd.service.in -------------------------------------------------------------------------------- /src/ztpd/ztpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/ztpd.c -------------------------------------------------------------------------------- /src/ztpd/ztpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/ztpd.h -------------------------------------------------------------------------------- /src/ztpd/ztpd_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/ztpd_ui.c -------------------------------------------------------------------------------- /src/ztpd/ztpd_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wifi-ztp/HEAD/src/ztpd/ztpd_ui.h --------------------------------------------------------------------------------