Compare commits

...

4 Commits
1.1 ... master

Author SHA1 Message Date
ecf3048b78 Update external URL
Fixes: #2
Reported by: Peder B. Sundt <pbsds@hotmail.com>
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-06-30 09:30:56 +02:00
403caa2d36 Update samples
The EAP-TTLS sample was broken and was replaced by a working one.

Reported-by: Tomasz Wolniewicz <twoln@umk.pl>
Signed-off-by: Simon Rozman <simon@rozman.si>
2020-02-26 15:38:48 +01:00
de3744189e Bump WinStd
Signed-off-by: Simon Rozman <simon@rozman.si>
2019-11-28 15:51:43 +01:00
549621dbbd Extend examples section
Signed-off-by: Simon Rozman <simon@rozman.si>
2019-06-17 11:01:21 +02:00
7 changed files with 32 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" ?>
<EapHostUserCredentials xmlns="http://www.microsoft.com/provisioning/EapHostUserCredentials"
xmlns:eapCommon="http://www.microsoft.com/provisioning/EapCommon"
xmlns:baseEap="http://www.microsoft.com/provisioning/BaseEapMethodUserCredentials">
<EapMethod>
<eapCommon:Type>21</eapCommon:Type>
<eapCommon:AuthorId>311</eapCommon:AuthorId>
</EapMethod>
<Credentials xmlns="http://www.microsoft.com/provisioning/EapHostUserCredentials">
<EapTtls xmlns="http://www.microsoft.com/provisioning/EapTtlsUserPropertiesV1">
<Username>user03</Username>
<Password>user_0303</Password>
</EapTtls>
</Credentials>
</EapHostUserCredentials>

View File

@ -15,7 +15,7 @@ WLANSetEAPUserData <profile> <flags> <user data URI> [/i]
| --------------- | ----------- | | --------------- | ----------- |
| `profile` | The name of the network profile (typically same as SSID) | | `profile` | The name of the network profile (typically same as SSID) |
| `flags` | Flags to pass to `WlanSetProfileEapXmlUserData()` function call (decimal number: 0=Current User, 1=All Users) | | `flags` | Flags to pass to `WlanSetProfileEapXmlUserData()` function call (decimal number: 0=Current User, 1=All Users) |
| `user data URI` | User data XML URI. Can be a path to an XML file, web URL where user data XML can be loaded from, etc. The XML schema varies according to the configured EAP method provider used by `profile`. For example: Microsoft's EAP-TLS requires the schema described in [EAP-TLS User Properties](https://msdn.microsoft.com/en-us/library/windows/desktop/bb204662.aspx). | | `user data URI` | User data XML URI. Can be a path to an XML file, web URL where user data XML can be loaded from, etc. The XML schema varies according to the configured EAP method provider used by `profile`. For example: Microsoft's EAP-TLS requires the schema described in [EAP-TLS User Properties](https://docs.microsoft.com/en-us/windows/win32/eaphost/eap-tls-user-properties). |
| /i | Interactive: Pop-up a message dialog in case of error | | /i | Interactive: Pop-up a message dialog in case of error |

View File

@ -150,6 +150,10 @@
<Project>{47399d91-7eb9-41de-b521-514ba5db0c43}</Project> <Project>{47399d91-7eb9-41de-b521-514ba5db0c43}</Project>
</ProjectReference> </ProjectReference>
</ItemGroup> </ItemGroup>
<ItemGroup>
<Xml Include="..\Examples\Microsoft EAP-TLS Userdata.xml" />
<Xml Include="..\Examples\Microsoft EAP-TTLS Userdata %28inner non-EAP%29.xml" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">
</ImportGroup> </ImportGroup>

View File

@ -13,6 +13,9 @@
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter> </Filter>
<Filter Include="Examples">
<UniqueIdentifier>{fe2655f9-bce6-47e8-84d5-6d78ca6006b6}</UniqueIdentifier>
</Filter>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="WLANSetEAPUserData.cpp"> <ClCompile Include="WLANSetEAPUserData.cpp">
@ -29,4 +32,12 @@
<Filter>Resource Files</Filter> <Filter>Resource Files</Filter>
</ResourceCompile> </ResourceCompile>
</ItemGroup> </ItemGroup>
<ItemGroup>
<Xml Include="..\Examples\Microsoft EAP-TLS Userdata.xml">
<Filter>Examples</Filter>
</Xml>
<Xml Include="..\Examples\Microsoft EAP-TTLS Userdata %28inner non-EAP%29.xml">
<Filter>Examples</Filter>
</Xml>
</ItemGroup>
</Project> </Project>

@ -1 +1 @@
Subproject commit 8654f36e2016bc27d7a30b1b914edd9b5d1a3019 Subproject commit f9e65c8a75d96ecd08e0ca3cc171cade5e756da7