-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from microsoft/hapdsetauthdata
Enable configuring SAE passwords in hostapd layer
- Loading branch information
Showing
9 changed files
with
243 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
tests/unit/linux/wpa-controller/detail/config/hostapd.conf.format.hxx.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
#ifndef HOSTAPD_CONF_FORMAT_HXX | ||
#define HOSTAPD_CONF_FORMAT_HXX | ||
|
||
namespace detail | ||
{ | ||
static constexpr auto WpaDaemonHostapdConfigurationFileContentsFormat = R"CONFIG( | ||
interface={} | ||
driver=nl80211 | ||
ctrl_interface=@CMAKE_INSTALL_FULL_RUNSTATEDIR@/hostapd | ||
ssid=wificontrollertest | ||
hw_mode=g | ||
channel=1 | ||
auth_algs=3 | ||
wpa=2 | ||
wpa_passphrase=password | ||
wpa_key_mgmt=WPA-PSK WPA-PSK-SHA256 SAE | ||
wpa_pairwise=TKIP CCMP | ||
rsn_pairwise=CCMP | ||
)CONFIG"; | ||
|
||
} // namespace detail | ||
|
||
#endif // HOSTAPD_CONF_FORMAT_HXX |