fixed problem with lan and dial
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = crlf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
4
NetWork/.gitignore
vendored
4
NetWork/.gitignore
vendored
@@ -1,4 +0,0 @@
|
||||
desktop.ini
|
||||
*/bin/*
|
||||
*/Debug/*
|
||||
*.dll
|
@@ -1,12 +0,0 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = crlf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
Binary file not shown.
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"CurrentProjectSetting": null
|
||||
}
|
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"ExpandedNodes": [
|
||||
""
|
||||
],
|
||||
"SelectedNode": "\\NetWork.sln",
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
Binary file not shown.
@@ -1,25 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.31402.337
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetWork", "NetWork\NetWork.csproj", "{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {BCD0CEDC-F7E6-4311-A924-55D96D536E8D}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Collections.Generic;
|
||||
using System.Management;
|
||||
@@ -44,22 +44,30 @@ namespace NetWork
|
||||
else
|
||||
{
|
||||
Process[] ids = Process.GetProcessesByName("mstsc");
|
||||
foreach (var id in ids)
|
||||
if (ids.Length < 1)
|
||||
{
|
||||
bool started = false;
|
||||
ManagementObjectSearcher search = new($"SELECT CommandLine FROM Win32_Process WHERE ProcessId = {id.Id}");
|
||||
Regex rdp = new("(משרדוש.rdp|161.2)");
|
||||
foreach (var searchedObject in search.Get())
|
||||
StartProgram("rdp");
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var id in ids)
|
||||
{
|
||||
if (rdp.Match(searchedObject["CommandLine"].ToString()).Success)
|
||||
bool started = false;
|
||||
ManagementObjectSearcher search = new($"SELECT CommandLine FROM Win32_Process WHERE ProcessId = {id.Id}");
|
||||
Regex rdp = new("(משרדוש.rdp|161.2)");
|
||||
foreach (var searchedObject in search.Get())
|
||||
{
|
||||
started = true;
|
||||
if (rdp.Match(searchedObject["CommandLine"].ToString()).Success)
|
||||
{
|
||||
started = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!started)
|
||||
{
|
||||
StartProgram("rdp");
|
||||
}
|
||||
if (!started)
|
||||
{
|
||||
StartProgram("rdp");
|
||||
}
|
||||
|
||||
}
|
||||
Console.WriteLine("");
|
||||
|
||||
}
|
||||
@@ -83,7 +91,12 @@ namespace NetWork
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public static string GetProgram(string Name)
|
||||
/// <summary>
|
||||
/// GetProgram switches between the name and the path of the file. if the name is given, it returns the path. if the path is given, it returns the name.
|
||||
/// </summary>
|
||||
/// <param name="NameOrPath">file or path of the program</param>
|
||||
/// <returns>path if name has given, name if path has given. empty string if found nothing.</returns>
|
||||
public static string GetProgram(string NameOrPath)
|
||||
{
|
||||
/*
|
||||
this function decides if the program is a name, or a location.
|
||||
@@ -92,13 +105,13 @@ namespace NetWork
|
||||
otherwise, it returns empty string
|
||||
*/
|
||||
|
||||
if (progs.ContainsKey(Name))
|
||||
if (progs.ContainsKey(NameOrPath))
|
||||
{
|
||||
return progs[Name];
|
||||
return progs[NameOrPath];
|
||||
}
|
||||
if (paths.ContainsKey(Name))
|
||||
if (paths.ContainsKey(NameOrPath))
|
||||
{
|
||||
return paths[Name];
|
||||
return paths[NameOrPath];
|
||||
}
|
||||
return "";
|
||||
|
||||
@@ -135,12 +148,11 @@ namespace NetWork
|
||||
}
|
||||
public static void StartProgram(string[] Name, bool mute = false)
|
||||
{
|
||||
|
||||
foreach (var process_name in Name)
|
||||
{
|
||||
if (process_name.Contains("rdp") || process_name.Contains("mstsc"))
|
||||
{
|
||||
Process.Start("mstsc.exe", "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp");
|
||||
StopRDP(false);
|
||||
continue;
|
||||
}
|
||||
else if (Process.GetProcessesByName(process_name).Length < 1)
|
||||
@@ -176,15 +188,30 @@ namespace NetWork
|
||||
|
||||
return goodWifi;
|
||||
}
|
||||
static bool LanEthernet(System.Net.NetworkInformation.NetworkInterface networkAdapter)
|
||||
{
|
||||
if (networkAdapter.Name.Contains("Ethernet") || (networkAdapter.NetworkInterfaceType.ToString().Contains("Ethernet")))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
static bool IgnoreLan(System.Net.NetworkInformation.NetworkInterface networkAdapter)
|
||||
{
|
||||
if (!(networkAdapter.Name.Contains("Bluetooth")) && (!(networkAdapter.Description.Contains("TAP"))) && (!(networkAdapter.Description.Contains("Hyper-V"))))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
static string GetLan(System.Net.NetworkInformation.NetworkInterface networkAdapter)
|
||||
{
|
||||
if (networkAdapter.Name.Contains("Ethernet") && !(networkAdapter.Description.Contains("TAP")) && !(networkAdapter.Description.Contains("Hyper-V")))
|
||||
if (LanEthernet(networkAdapter) && IgnoreLan(networkAdapter))
|
||||
{
|
||||
return networkAdapter.GetPhysicalAddress().ToString();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
static bool GetVpn(System.Net.NetworkInformation.NetworkInterface net)
|
||||
{
|
||||
if (net.Name.Contains("Surfshark") || net.Name.Contains("shark") || net.Description.Contains("TAP"))
|
||||
@@ -193,19 +220,28 @@ namespace NetWork
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public static Dictionary<string, dynamic> GetNetwork()
|
||||
{
|
||||
Dictionary<string, dynamic> net_dict = new() { { "vpn", false }, { "lan", false }, { "good_lan", false }, { "ek", false } };
|
||||
System.Net.NetworkInformation.NetworkInterface[] nets = System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces();
|
||||
string getlan = "";
|
||||
string? lannull;
|
||||
bool getgoodland = false;
|
||||
string getwifi;
|
||||
getwifi = GetWifiNetwork();
|
||||
foreach (var net in nets)
|
||||
{
|
||||
if (net.Name == "ek")
|
||||
{
|
||||
net_dict["ek"] |= true;
|
||||
}
|
||||
|
||||
net_dict["vpn"] |= GetVpn(net);
|
||||
getlan ??= GetLan(net);
|
||||
lannull= GetLan(net);
|
||||
if (lannull is not null)
|
||||
{
|
||||
getlan = lannull;
|
||||
}
|
||||
if (AllowedMac(net.GetPhysicalAddress().ToString()))
|
||||
{
|
||||
getgoodland |= true ;
|
||||
@@ -214,7 +250,10 @@ namespace NetWork
|
||||
}
|
||||
net_dict.Add("Wi-Fi", IsItGoodWifi(getwifi));
|
||||
net_dict["good_lan"]=getgoodland;
|
||||
net_dict["lan"]= getlan;
|
||||
if (getlan.Length > 0)
|
||||
{
|
||||
net_dict["lan"]= true;
|
||||
}
|
||||
|
||||
//net_dict.Add("good_lan", AllowedMac());
|
||||
return net_dict;
|
@@ -1,36 +0,0 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Windows.Common.ManagedWifi")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Windows.Common.ManagedWifi")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("ddfe602d-a0b5-4429-8b5c-e99155b6777a")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
File diff suppressed because it is too large
Load Diff
@@ -1,800 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Net.NetworkInformation;
|
||||
using System.Threading;
|
||||
using System.Text;
|
||||
|
||||
namespace Windows.Common.Wifi
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a client to the Zeroconf (Native Wifi) service.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This class is the entrypoint to Native Wifi management. To manage WiFi settings, create an instance
|
||||
/// of this class.
|
||||
/// </remarks>
|
||||
public class WlanClient
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a Wifi network interface.
|
||||
/// </summary>
|
||||
public class WlanInterface
|
||||
{
|
||||
private WlanClient client;
|
||||
private Wlan.WlanInterfaceInfo info;
|
||||
|
||||
#region Events
|
||||
/// <summary>
|
||||
/// Represents a method that will handle <see cref="WlanNotification"/> events.
|
||||
/// </summary>
|
||||
/// <param name="notifyData">The notification data.</param>
|
||||
public delegate void WlanNotificationEventHandler(Wlan.WlanNotificationData notifyData);
|
||||
|
||||
/// <summary>
|
||||
/// Represents a method that will handle <see cref="WlanConnectionNotification"/> events.
|
||||
/// </summary>
|
||||
/// <param name="notifyData">The notification data.</param>
|
||||
/// <param name="connNotifyData">The notification data.</param>
|
||||
public delegate void WlanConnectionNotificationEventHandler(Wlan.WlanNotificationData notifyData, Wlan.WlanConnectionNotificationData connNotifyData);
|
||||
|
||||
/// <summary>
|
||||
/// Represents a method that will handle <see cref="WlanReasonNotification"/> events.
|
||||
/// </summary>
|
||||
/// <param name="notifyData">The notification data.</param>
|
||||
/// <param name="reasonCode">The reason code.</param>
|
||||
public delegate void WlanReasonNotificationEventHandler(Wlan.WlanNotificationData notifyData, Wlan.WlanReasonCode reasonCode);
|
||||
|
||||
/// <summary>
|
||||
/// Occurs when an event of any kind occurs on a WLAN interface.
|
||||
/// </summary>
|
||||
public event WlanNotificationEventHandler WlanNotification;
|
||||
|
||||
/// <summary>
|
||||
/// Occurs when a WLAN interface changes connection state.
|
||||
/// </summary>
|
||||
public event WlanConnectionNotificationEventHandler WlanConnectionNotification;
|
||||
|
||||
/// <summary>
|
||||
/// Occurs when a WLAN operation fails due to some reason.
|
||||
/// </summary>
|
||||
public event WlanReasonNotificationEventHandler WlanReasonNotification;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Event queue
|
||||
private bool queueEvents;
|
||||
private AutoResetEvent eventQueueFilled = new AutoResetEvent(false);
|
||||
private Queue<object> eventQueue = new Queue<object>();
|
||||
|
||||
private struct WlanConnectionNotificationEventData
|
||||
{
|
||||
public Wlan.WlanNotificationData notifyData;
|
||||
public Wlan.WlanConnectionNotificationData connNotifyData;
|
||||
}
|
||||
private struct WlanReasonNotificationData
|
||||
{
|
||||
public Wlan.WlanNotificationData notifyData;
|
||||
public Wlan.WlanReasonCode reasonCode;
|
||||
}
|
||||
#endregion
|
||||
|
||||
internal WlanInterface(WlanClient client, Wlan.WlanInterfaceInfo info)
|
||||
{
|
||||
this.client = client;
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets a parameter of the interface whose data type is <see cref="int"/>.
|
||||
/// </summary>
|
||||
/// <param name="opCode">The opcode of the parameter.</param>
|
||||
/// <param name="value">The value to set.</param>
|
||||
private void SetInterfaceInt(Wlan.WlanIntfOpcode opCode, int value)
|
||||
{
|
||||
IntPtr valuePtr = Marshal.AllocHGlobal(sizeof(int));
|
||||
Marshal.WriteInt32(valuePtr, value);
|
||||
try
|
||||
{
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanSetInterface(client.clientHandle, info.interfaceGuid, opCode, sizeof(int), valuePtr, IntPtr.Zero));
|
||||
}
|
||||
finally
|
||||
{
|
||||
Marshal.FreeHGlobal(valuePtr);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a parameter of the interface whose data type is <see cref="int"/>.
|
||||
/// </summary>
|
||||
/// <param name="opCode">The opcode of the parameter.</param>
|
||||
/// <returns>The integer value.</returns>
|
||||
private int GetInterfaceInt(Wlan.WlanIntfOpcode opCode)
|
||||
{
|
||||
IntPtr valuePtr;
|
||||
int valueSize;
|
||||
Wlan.WlanOpcodeValueType opcodeValueType;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanQueryInterface(client.clientHandle, info.interfaceGuid, opCode, IntPtr.Zero, out valueSize, out valuePtr, out opcodeValueType));
|
||||
try
|
||||
{
|
||||
return Marshal.ReadInt32(valuePtr);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(valuePtr);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this <see cref="WlanInterface"/> is automatically configured.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if "autoconf" is enabled; otherwise, <c>false</c>.</value>
|
||||
public bool Autoconf
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetInterfaceInt(Wlan.WlanIntfOpcode.AutoconfEnabled) != 0;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetInterfaceInt(Wlan.WlanIntfOpcode.AutoconfEnabled, value ? 1 : 0);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the BSS type for the indicated interface.
|
||||
/// </summary>
|
||||
/// <value>The type of the BSS.</value>
|
||||
public Wlan.Dot11BssType BssType
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Wlan.Dot11BssType) GetInterfaceInt(Wlan.WlanIntfOpcode.BssType);
|
||||
}
|
||||
set
|
||||
{
|
||||
SetInterfaceInt(Wlan.WlanIntfOpcode.BssType, (int)value);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the state of the interface.
|
||||
/// </summary>
|
||||
/// <value>The state of the interface.</value>
|
||||
public Wlan.WlanInterfaceState InterfaceState
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Wlan.WlanInterfaceState)GetInterfaceInt(Wlan.WlanIntfOpcode.InterfaceState);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the channel.
|
||||
/// </summary>
|
||||
/// <value>The channel.</value>
|
||||
/// <remarks>Not supported on Windows XP SP2.</remarks>
|
||||
public int Channel
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetInterfaceInt(Wlan.WlanIntfOpcode.ChannelNumber);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the RSSI.
|
||||
/// </summary>
|
||||
/// <value>The RSSI.</value>
|
||||
/// <remarks>Not supported on Windows XP SP2.</remarks>
|
||||
public int RSSI
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetInterfaceInt(Wlan.WlanIntfOpcode.RSSI);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current operation mode.
|
||||
/// </summary>
|
||||
/// <value>The current operation mode.</value>
|
||||
/// <remarks>Not supported on Windows XP SP2.</remarks>
|
||||
public Wlan.Dot11OperationMode CurrentOperationMode
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Wlan.Dot11OperationMode) GetInterfaceInt(Wlan.WlanIntfOpcode.CurrentOperationMode);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the attributes of the current connection.
|
||||
/// </summary>
|
||||
/// <value>The current connection attributes.</value>
|
||||
/// <exception cref="Win32Exception">An exception with code 0x0000139F (The group or resource is not in the correct state to perform the requested operation.) will be thrown if the interface is not connected to a network.</exception>
|
||||
public Wlan.WlanConnectionAttributes CurrentConnection
|
||||
{
|
||||
get
|
||||
{
|
||||
int valueSize;
|
||||
IntPtr valuePtr;
|
||||
Wlan.WlanOpcodeValueType opcodeValueType;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanQueryInterface(client.clientHandle, info.interfaceGuid, Wlan.WlanIntfOpcode.CurrentConnection, IntPtr.Zero, out valueSize, out valuePtr, out opcodeValueType));
|
||||
try
|
||||
{
|
||||
return (Wlan.WlanConnectionAttributes)Marshal.PtrToStructure(valuePtr, typeof(Wlan.WlanConnectionAttributes));
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(valuePtr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Requests a scan for available networks.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The method returns immediately. Progress is reported through the <see cref="WlanNotification"/> event.
|
||||
/// </remarks>
|
||||
public void Scan()
|
||||
{
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanScan(client.clientHandle, info.interfaceGuid, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Converts a pointer to a available networks list (header + entries) to an array of available network entries.
|
||||
/// </summary>
|
||||
/// <param name="bssListPtr">A pointer to an available networks list's header.</param>
|
||||
/// <returns>An array of available network entries.</returns>
|
||||
private Wlan.WlanAvailableNetwork[] ConvertAvailableNetworkListPtr(IntPtr availNetListPtr)
|
||||
{
|
||||
Wlan.WlanAvailableNetworkListHeader availNetListHeader = (Wlan.WlanAvailableNetworkListHeader)Marshal.PtrToStructure(availNetListPtr, typeof(Wlan.WlanAvailableNetworkListHeader));
|
||||
long availNetListIt = availNetListPtr.ToInt64() + Marshal.SizeOf(typeof(Wlan.WlanAvailableNetworkListHeader));
|
||||
Wlan.WlanAvailableNetwork[] availNets = new Wlan.WlanAvailableNetwork[availNetListHeader.numberOfItems];
|
||||
for (int i = 0; i < availNetListHeader.numberOfItems; ++i)
|
||||
{
|
||||
availNets[i] = (Wlan.WlanAvailableNetwork)Marshal.PtrToStructure(new IntPtr(availNetListIt), typeof(Wlan.WlanAvailableNetwork));
|
||||
availNetListIt += Marshal.SizeOf(typeof(Wlan.WlanAvailableNetwork));
|
||||
}
|
||||
return availNets;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves the list of available networks.
|
||||
/// </summary>
|
||||
/// <param name="flags">Controls the type of networks returned.</param>
|
||||
/// <returns>A list of the available networks.</returns>
|
||||
public Wlan.WlanAvailableNetwork[] GetAvailableNetworkList(Wlan.WlanGetAvailableNetworkFlags flags)
|
||||
{
|
||||
IntPtr availNetListPtr;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanGetAvailableNetworkList(client.clientHandle, info.interfaceGuid, flags, IntPtr.Zero, out availNetListPtr));
|
||||
try
|
||||
{
|
||||
return ConvertAvailableNetworkListPtr(availNetListPtr);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(availNetListPtr);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Converts a pointer to a BSS list (header + entries) to an array of BSS entries.
|
||||
/// </summary>
|
||||
/// <param name="bssListPtr">A pointer to a BSS list's header.</param>
|
||||
/// <returns>An array of BSS entries.</returns>
|
||||
private Wlan.WlanBssEntry[] ConvertBssListPtr(IntPtr bssListPtr)
|
||||
{
|
||||
Wlan.WlanBssListHeader bssListHeader = (Wlan.WlanBssListHeader)Marshal.PtrToStructure(bssListPtr, typeof(Wlan.WlanBssListHeader));
|
||||
long bssListIt = bssListPtr.ToInt64() + Marshal.SizeOf(typeof(Wlan.WlanBssListHeader));
|
||||
Wlan.WlanBssEntry[] bssEntries = new Wlan.WlanBssEntry[bssListHeader.numberOfItems];
|
||||
for (int i=0; i<bssListHeader.numberOfItems; ++i)
|
||||
{
|
||||
bssEntries[i] = (Wlan.WlanBssEntry)Marshal.PtrToStructure(new IntPtr(bssListIt), typeof(Wlan.WlanBssEntry));
|
||||
bssListIt += Marshal.SizeOf(typeof(Wlan.WlanBssEntry));
|
||||
}
|
||||
return bssEntries;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves the basic service sets (BSS) list of all available networks.
|
||||
/// </summary>
|
||||
public Wlan.WlanBssEntry[] GetNetworkBssList()
|
||||
{
|
||||
IntPtr bssListPtr;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanGetNetworkBssList(client.clientHandle, info.interfaceGuid, IntPtr.Zero, Wlan.Dot11BssType.Any, false, IntPtr.Zero, out bssListPtr));
|
||||
try
|
||||
{
|
||||
return ConvertBssListPtr(bssListPtr);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(bssListPtr);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves the basic service sets (BSS) list of the specified network.
|
||||
/// </summary>
|
||||
/// <param name="ssid">Specifies the SSID of the network from which the BSS list is requested.</param>
|
||||
/// <param name="bssType">Indicates the BSS type of the network.</param>
|
||||
/// <param name="securityEnabled">Indicates whether security is enabled on the network.</param>
|
||||
public Wlan.WlanBssEntry[] GetNetworkBssList(Wlan.Dot11Ssid ssid, Wlan.Dot11BssType bssType, bool securityEnabled)
|
||||
{
|
||||
IntPtr ssidPtr = Marshal.AllocHGlobal(Marshal.SizeOf(ssid));
|
||||
Marshal.StructureToPtr(ssid, ssidPtr, false);
|
||||
try
|
||||
{
|
||||
IntPtr bssListPtr;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanGetNetworkBssList(client.clientHandle, info.interfaceGuid, ssidPtr, bssType, securityEnabled, IntPtr.Zero, out bssListPtr));
|
||||
try
|
||||
{
|
||||
return ConvertBssListPtr(bssListPtr);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(bssListPtr);
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
Marshal.FreeHGlobal(ssidPtr);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Connects to a network defined by a connection parameters structure.
|
||||
/// </summary>
|
||||
/// <param name="connectionParams">The connection paramters.</param>
|
||||
protected void Connect(Wlan.WlanConnectionParameters connectionParams)
|
||||
{
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanConnect(client.clientHandle, info.interfaceGuid, ref connectionParams, IntPtr.Zero));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Requests a connection (association) to the specified wireless network.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The method returns immediately. Progress is reported through the <see cref="WlanNotification"/> event.
|
||||
/// </remarks>
|
||||
public void Connect(Wlan.WlanConnectionMode connectionMode, Wlan.Dot11BssType bssType, string profile)
|
||||
{
|
||||
Wlan.WlanConnectionParameters connectionParams = new Wlan.WlanConnectionParameters();
|
||||
connectionParams.wlanConnectionMode = connectionMode;
|
||||
connectionParams.profile = profile;
|
||||
connectionParams.dot11BssType = bssType;
|
||||
connectionParams.flags = 0;
|
||||
Connect(connectionParams);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Connects (associates) to the specified wireless network, returning either on a success to connect
|
||||
/// or a failure.
|
||||
/// </summary>
|
||||
/// <param name="connectionMode"></param>
|
||||
/// <param name="bssType"></param>
|
||||
/// <param name="profile"></param>
|
||||
/// <param name="connectTimeout"></param>
|
||||
/// <returns></returns>
|
||||
public bool ConnectSynchronously(Wlan.WlanConnectionMode connectionMode, Wlan.Dot11BssType bssType, string profile, int connectTimeout)
|
||||
{
|
||||
queueEvents = true;
|
||||
try
|
||||
{
|
||||
Connect(connectionMode, bssType, profile);
|
||||
while (queueEvents && eventQueueFilled.WaitOne(connectTimeout, true))
|
||||
{
|
||||
lock (eventQueue)
|
||||
{
|
||||
while (eventQueue.Count != 0)
|
||||
{
|
||||
object e = eventQueue.Dequeue();
|
||||
if (e is WlanConnectionNotificationEventData)
|
||||
{
|
||||
WlanConnectionNotificationEventData wlanConnectionData = (WlanConnectionNotificationEventData)e;
|
||||
// Check if the conditions are good to indicate either success or failure.
|
||||
if (wlanConnectionData.notifyData.notificationSource == Wlan.WlanNotificationSource.ACM)
|
||||
{
|
||||
switch ((Wlan.WlanNotificationCodeAcm)wlanConnectionData.notifyData.notificationCode)
|
||||
{
|
||||
case Wlan.WlanNotificationCodeAcm.ConnectionComplete:
|
||||
if (wlanConnectionData.connNotifyData.profileName == profile)
|
||||
return true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
queueEvents = false;
|
||||
eventQueue.Clear();
|
||||
}
|
||||
return false; // timeout expired and no "connection complete"
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Connects to the specified wireless network.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The method returns immediately. Progress is reported through the <see cref="WlanNotification"/> event.
|
||||
/// </remarks>
|
||||
public void Connect(Wlan.WlanConnectionMode connectionMode, Wlan.Dot11BssType bssType, Wlan.Dot11Ssid ssid, Wlan.WlanConnectionFlags flags)
|
||||
{
|
||||
Wlan.WlanConnectionParameters connectionParams = new Wlan.WlanConnectionParameters();
|
||||
connectionParams.wlanConnectionMode = connectionMode;
|
||||
connectionParams.dot11SsidPtr = Marshal.AllocHGlobal(Marshal.SizeOf(ssid));
|
||||
Marshal.StructureToPtr(ssid, connectionParams.dot11SsidPtr, false);
|
||||
connectionParams.dot11BssType = bssType;
|
||||
connectionParams.flags = flags;
|
||||
Connect(connectionParams);
|
||||
Marshal.DestroyStructure(connectionParams.dot11SsidPtr, ssid.GetType());
|
||||
Marshal.FreeHGlobal(connectionParams.dot11SsidPtr);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Deletes a profile.
|
||||
/// </summary>
|
||||
/// <param name="profileName">
|
||||
/// The name of the profile to be deleted. Profile names are case-sensitive.
|
||||
/// On Windows XP SP2, the supplied name must match the profile name derived automatically from the SSID of the network. For an infrastructure network profile, the SSID must be supplied for the profile name. For an ad hoc network profile, the supplied name must be the SSID of the ad hoc network followed by <c>-adhoc</c>.
|
||||
/// </param>
|
||||
public void DeleteProfile(string profileName)
|
||||
{
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanDeleteProfile(client.clientHandle, info.interfaceGuid, profileName, IntPtr.Zero));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets the profile.
|
||||
/// </summary>
|
||||
/// <param name="flags">The flags to set on the profile.</param>
|
||||
/// <param name="profileXml">The XML representation of the profile. On Windows XP SP 2, special care should be taken to adhere to its limitations.</param>
|
||||
/// <param name="overwrite">If a profile by the given name already exists, then specifies whether to overwrite it (if <c>true</c>) or return an error (if <c>false</c>).</param>
|
||||
/// <returns>The resulting code indicating a success or the reason why the profile wasn't valid.</returns>
|
||||
public Wlan.WlanReasonCode SetProfile(Wlan.WlanProfileFlags flags, string profileXml, bool overwrite)
|
||||
{
|
||||
Wlan.WlanReasonCode reasonCode;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanSetProfile(client.clientHandle, info.interfaceGuid, flags, profileXml, null, overwrite, IntPtr.Zero, out reasonCode));
|
||||
return reasonCode;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the profile's XML specification.
|
||||
/// </summary>
|
||||
/// <param name="profileName">The name of the profile.</param>
|
||||
/// <returns>The XML document.</returns>
|
||||
public string GetProfileXml(string profileName)
|
||||
{
|
||||
IntPtr profileXmlPtr;
|
||||
Wlan.WlanProfileFlags flags;
|
||||
Wlan.WlanAccess access;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanGetProfile(client.clientHandle, info.interfaceGuid, profileName, IntPtr.Zero, out profileXmlPtr, out flags,
|
||||
out access));
|
||||
try
|
||||
{
|
||||
return Marshal.PtrToStringUni(profileXmlPtr);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(profileXmlPtr);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the information of all profiles on this interface.
|
||||
/// </summary>
|
||||
/// <returns>The profiles information.</returns>
|
||||
public Wlan.WlanProfileInfo[] GetProfiles()
|
||||
{
|
||||
IntPtr profileListPtr;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanGetProfileList(client.clientHandle, info.interfaceGuid, IntPtr.Zero, out profileListPtr));
|
||||
try
|
||||
{
|
||||
Wlan.WlanProfileInfoListHeader header = (Wlan.WlanProfileInfoListHeader) Marshal.PtrToStructure(profileListPtr, typeof(Wlan.WlanProfileInfoListHeader));
|
||||
Wlan.WlanProfileInfo[] profileInfos = new Wlan.WlanProfileInfo[header.numberOfItems];
|
||||
long profileListIterator = profileListPtr.ToInt64() + Marshal.SizeOf(header);
|
||||
for (int i=0; i<header.numberOfItems; ++i)
|
||||
{
|
||||
Wlan.WlanProfileInfo profileInfo = (Wlan.WlanProfileInfo) Marshal.PtrToStructure(new IntPtr(profileListIterator), typeof(Wlan.WlanProfileInfo));
|
||||
profileInfos[i] = profileInfo;
|
||||
profileListIterator += Marshal.SizeOf(profileInfo);
|
||||
}
|
||||
return profileInfos;
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(profileListPtr);
|
||||
}
|
||||
}
|
||||
|
||||
internal void OnWlanConnection(Wlan.WlanNotificationData notifyData, Wlan.WlanConnectionNotificationData connNotifyData)
|
||||
{
|
||||
if (WlanConnectionNotification != null)
|
||||
WlanConnectionNotification(notifyData, connNotifyData);
|
||||
|
||||
if (queueEvents)
|
||||
{
|
||||
WlanConnectionNotificationEventData queuedEvent = new WlanConnectionNotificationEventData();
|
||||
queuedEvent.notifyData = notifyData;
|
||||
queuedEvent.connNotifyData = connNotifyData;
|
||||
EnqueueEvent(queuedEvent);
|
||||
}
|
||||
}
|
||||
|
||||
internal void OnWlanReason(Wlan.WlanNotificationData notifyData, Wlan.WlanReasonCode reasonCode)
|
||||
{
|
||||
if (WlanReasonNotification != null)
|
||||
WlanReasonNotification(notifyData, reasonCode);
|
||||
if (queueEvents)
|
||||
{
|
||||
WlanReasonNotificationData queuedEvent = new WlanReasonNotificationData();
|
||||
queuedEvent.notifyData = notifyData;
|
||||
queuedEvent.reasonCode = reasonCode;
|
||||
EnqueueEvent(queuedEvent);
|
||||
}
|
||||
}
|
||||
|
||||
internal void OnWlanNotification(Wlan.WlanNotificationData notifyData)
|
||||
{
|
||||
if (WlanNotification != null)
|
||||
WlanNotification(notifyData);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enqueues a notification event to be processed serially.
|
||||
/// </summary>
|
||||
private void EnqueueEvent(object queuedEvent)
|
||||
{
|
||||
lock (eventQueue)
|
||||
eventQueue.Enqueue(queuedEvent);
|
||||
eventQueueFilled.Set();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the network interface of this wireless interface.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The network interface allows querying of generic network properties such as the interface's IP address.
|
||||
/// </remarks>
|
||||
public NetworkInterface NetworkInterface
|
||||
{
|
||||
get
|
||||
{
|
||||
// Do not cache the NetworkInterface; We need it fresh
|
||||
// each time cause otherwise it caches the IP information.
|
||||
foreach (NetworkInterface netIface in NetworkInterface.GetAllNetworkInterfaces())
|
||||
{
|
||||
Guid netIfaceGuid = new Guid(netIface.Id);
|
||||
if (netIfaceGuid.Equals(info.interfaceGuid))
|
||||
{
|
||||
return netIface;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The GUID of the interface (same content as the <see cref="System.Net.NetworkInformation.NetworkInterface.Id"/> value).
|
||||
/// </summary>
|
||||
public Guid InterfaceGuid
|
||||
{
|
||||
get { return info.interfaceGuid; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The description of the interface.
|
||||
/// This is a user-immutable string containing the vendor and model name of the adapter.
|
||||
/// </summary>
|
||||
public string InterfaceDescription
|
||||
{
|
||||
get { return info.interfaceDescription; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The friendly name given to the interface by the user (e.g. "Local Area Network Connection").
|
||||
/// </summary>
|
||||
public string InterfaceName
|
||||
{
|
||||
get { return NetworkInterface.Name; }
|
||||
}
|
||||
}
|
||||
|
||||
private IntPtr clientHandle;
|
||||
private uint negotiatedVersion;
|
||||
private Wlan.WlanNotificationCallbackDelegate wlanNotificationCallback;
|
||||
|
||||
private Dictionary<Guid,WlanInterface> ifaces = new Dictionary<Guid,WlanInterface>();
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new instance of a Native Wifi service client.
|
||||
/// </summary>
|
||||
public WlanClient()
|
||||
{
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanOpenHandle(Wlan.WLAN_CLIENT_VERSION_XP_SP2, IntPtr.Zero, out negotiatedVersion, out clientHandle));
|
||||
try
|
||||
{
|
||||
Wlan.WlanNotificationSource prevSrc;
|
||||
wlanNotificationCallback = new Wlan.WlanNotificationCallbackDelegate(OnWlanNotification);
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanRegisterNotification(clientHandle, Wlan.WlanNotificationSource.All, false, wlanNotificationCallback, IntPtr.Zero, IntPtr.Zero, out prevSrc));
|
||||
}
|
||||
catch
|
||||
{
|
||||
Wlan.WlanCloseHandle(clientHandle, IntPtr.Zero);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
~WlanClient()
|
||||
{
|
||||
Wlan.WlanCloseHandle(clientHandle, IntPtr.Zero);
|
||||
}
|
||||
|
||||
private Wlan.WlanConnectionNotificationData? ParseWlanConnectionNotification(ref Wlan.WlanNotificationData notifyData)
|
||||
{
|
||||
int expectedSize = Marshal.SizeOf(typeof(Wlan.WlanConnectionNotificationData));
|
||||
if (notifyData.dataSize < expectedSize)
|
||||
return null;
|
||||
|
||||
Wlan.WlanConnectionNotificationData connNotifyData =
|
||||
(Wlan.WlanConnectionNotificationData)
|
||||
Marshal.PtrToStructure(notifyData.dataPtr, typeof(Wlan.WlanConnectionNotificationData));
|
||||
if (connNotifyData.wlanReasonCode == Wlan.WlanReasonCode.Success)
|
||||
{
|
||||
IntPtr profileXmlPtr = new IntPtr(
|
||||
notifyData.dataPtr.ToInt64() +
|
||||
Marshal.OffsetOf(typeof(Wlan.WlanConnectionNotificationData), "profileXml").ToInt64());
|
||||
connNotifyData.profileXml = Marshal.PtrToStringUni(profileXmlPtr);
|
||||
}
|
||||
return connNotifyData;
|
||||
}
|
||||
|
||||
private void OnWlanNotification(ref Wlan.WlanNotificationData notifyData, IntPtr context)
|
||||
{
|
||||
WlanInterface wlanIface = ifaces.ContainsKey(notifyData.interfaceGuid) ? ifaces[notifyData.interfaceGuid] : null;
|
||||
|
||||
switch(notifyData.notificationSource)
|
||||
{
|
||||
case Wlan.WlanNotificationSource.ACM:
|
||||
switch((Wlan.WlanNotificationCodeAcm)notifyData.notificationCode)
|
||||
{
|
||||
case Wlan.WlanNotificationCodeAcm.ConnectionStart:
|
||||
case Wlan.WlanNotificationCodeAcm.ConnectionComplete:
|
||||
case Wlan.WlanNotificationCodeAcm.ConnectionAttemptFail:
|
||||
case Wlan.WlanNotificationCodeAcm.Disconnecting:
|
||||
case Wlan.WlanNotificationCodeAcm.Disconnected:
|
||||
Wlan.WlanConnectionNotificationData? connNotifyData = ParseWlanConnectionNotification(ref notifyData);
|
||||
if (connNotifyData.HasValue)
|
||||
if (wlanIface != null)
|
||||
wlanIface.OnWlanConnection(notifyData, connNotifyData.Value);
|
||||
break;
|
||||
case Wlan.WlanNotificationCodeAcm.ScanFail:
|
||||
{
|
||||
int expectedSize = Marshal.SizeOf(typeof (Wlan.WlanReasonCode));
|
||||
if (notifyData.dataSize >= expectedSize)
|
||||
{
|
||||
Wlan.WlanReasonCode reasonCode = (Wlan.WlanReasonCode) Marshal.ReadInt32(notifyData.dataPtr);
|
||||
if (wlanIface != null)
|
||||
wlanIface.OnWlanReason(notifyData, reasonCode);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case Wlan.WlanNotificationSource.MSM:
|
||||
switch((Wlan.WlanNotificationCodeMsm)notifyData.notificationCode)
|
||||
{
|
||||
case Wlan.WlanNotificationCodeMsm.Associating:
|
||||
case Wlan.WlanNotificationCodeMsm.Associated:
|
||||
case Wlan.WlanNotificationCodeMsm.Authenticating:
|
||||
case Wlan.WlanNotificationCodeMsm.Connected:
|
||||
case Wlan.WlanNotificationCodeMsm.RoamingStart:
|
||||
case Wlan.WlanNotificationCodeMsm.RoamingEnd:
|
||||
case Wlan.WlanNotificationCodeMsm.Disassociating:
|
||||
case Wlan.WlanNotificationCodeMsm.Disconnected:
|
||||
case Wlan.WlanNotificationCodeMsm.PeerJoin:
|
||||
case Wlan.WlanNotificationCodeMsm.PeerLeave:
|
||||
case Wlan.WlanNotificationCodeMsm.AdapterRemoval:
|
||||
Wlan.WlanConnectionNotificationData? connNotifyData = ParseWlanConnectionNotification(ref notifyData);
|
||||
if (connNotifyData.HasValue)
|
||||
if (wlanIface != null)
|
||||
wlanIface.OnWlanConnection(notifyData, connNotifyData.Value);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (wlanIface != null)
|
||||
wlanIface.OnWlanNotification(notifyData);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the WLAN interfaces.
|
||||
/// </summary>
|
||||
/// <value>The WLAN interfaces.</value>
|
||||
public WlanInterface[] Interfaces
|
||||
{
|
||||
get
|
||||
{
|
||||
IntPtr ifaceList;
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanEnumInterfaces(clientHandle, IntPtr.Zero, out ifaceList));
|
||||
try
|
||||
{
|
||||
Wlan.WlanInterfaceInfoListHeader header =
|
||||
(Wlan.WlanInterfaceInfoListHeader) Marshal.PtrToStructure(ifaceList, typeof (Wlan.WlanInterfaceInfoListHeader));
|
||||
Int64 listIterator = ifaceList.ToInt64() + Marshal.SizeOf(header);
|
||||
WlanInterface[] interfaces = new WlanInterface[header.numberOfItems];
|
||||
List<Guid> currentIfaceGuids = new List<Guid>();
|
||||
for (int i = 0; i < header.numberOfItems; ++i)
|
||||
{
|
||||
Wlan.WlanInterfaceInfo info =
|
||||
(Wlan.WlanInterfaceInfo) Marshal.PtrToStructure(new IntPtr(listIterator), typeof (Wlan.WlanInterfaceInfo));
|
||||
listIterator += Marshal.SizeOf(info);
|
||||
WlanInterface wlanIface;
|
||||
currentIfaceGuids.Add(info.interfaceGuid);
|
||||
if (ifaces.ContainsKey(info.interfaceGuid))
|
||||
wlanIface = ifaces[info.interfaceGuid];
|
||||
else
|
||||
wlanIface = new WlanInterface(this, info);
|
||||
interfaces[i] = wlanIface;
|
||||
ifaces[info.interfaceGuid] = wlanIface;
|
||||
}
|
||||
|
||||
// Remove stale interfaces
|
||||
Queue<Guid> deadIfacesGuids = new Queue<Guid>();
|
||||
foreach (Guid ifaceGuid in ifaces.Keys)
|
||||
{
|
||||
if (!currentIfaceGuids.Contains(ifaceGuid))
|
||||
deadIfacesGuids.Enqueue(ifaceGuid);
|
||||
}
|
||||
while(deadIfacesGuids.Count != 0)
|
||||
{
|
||||
Guid deadIfaceGuid = deadIfacesGuids.Dequeue();
|
||||
ifaces.Remove(deadIfaceGuid);
|
||||
}
|
||||
|
||||
return interfaces;
|
||||
}
|
||||
finally
|
||||
{
|
||||
Wlan.WlanFreeMemory(ifaceList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a string that describes a specified reason code.
|
||||
/// </summary>
|
||||
/// <param name="reasonCode">The reason code.</param>
|
||||
/// <returns>The string.</returns>
|
||||
public string GetStringForReasonCode(Wlan.WlanReasonCode reasonCode)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder(1024); // the 1024 size here is arbitrary; the WlanReasonCodeToString docs fail to specify a recommended size
|
||||
Wlan.ThrowIfError(
|
||||
Wlan.WlanReasonCodeToString(reasonCode, sb.Capacity, sb, IntPtr.Zero));
|
||||
return sb.ToString();
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,55 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{DDFE602D-A0B5-4429-8B5C-E99155B6777A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Windows.Common</RootNamespace>
|
||||
<AssemblyName>Windows.Common</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Wifi\Interop.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Wifi\WlanApi.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName = ".NET Framework 4.6")]
|
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6", FrameworkDisplayName = ".NET Framework 4.6")]
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user