Files
qController/qController.Standard/Classes/Communication/QFinder.cs
T
jwetzell 9899a6d33e BIG TCP Overhaul and passcode start
- Switch to Serilog for console logging
- TCPSender is now persistent (let's hope) so can be used with passcode protected workspaces
- UDP connection works with passcodes just can't timeout
- Passcode prompt is automatic for workspaces that are password protected
2020-06-05 23:53:16 -05:00

23 lines
560 B
C#

//Currently unused would like to reimplement eventually
//Currently being done in qConnectionPage.xaml.cs Scan() method
using Serilog;
using System.Collections.Generic;
using Zeroconf;
namespace qController
{
public class QFinder
{
public QFinder()
{
}
public async void SearchForWorkspaces()
{
Log.Debug("QFINDER - Scanning Started");
IReadOnlyList<IZeroconfHost> results = await ZeroconfResolver.ResolveAsync("_qlab._udp.local.");
Log.Debug("QFINDER - Scanning Done");
}
}
}