Initial check-in of module qController

This commit is contained in:
2018-06-01 15:09:01 -05:00
commit 30e23418a6
126 changed files with 10486 additions and 0 deletions
@@ -0,0 +1,26 @@
//Currently deprecated would like to resurrect
using System;
using System.Collections.Generic;
using Zeroconf;
namespace qController
{
public class QFinder
{
public QFinder()
{
}
public async void SearchForWorkspaces()
{
IReadOnlyList<IZeroconfHost> results = await ZeroconfResolver.ResolveAsync("_qlab._udp.local.");
foreach (var result in results){
Console.WriteLine(result.IPAddress);
}
Console.WriteLine("Done");
}
}
}