Switch to only TCP Communication

- No more UDP
- Lots of random refactoring as well
This commit is contained in:
2020-06-06 12:12:23 -05:00
parent ac084bb343
commit fe8bd257d1
32 changed files with 323 additions and 177 deletions
@@ -1,8 +1,9 @@
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using qController.Communication;
namespace qController
namespace qController.Cell
{
public class QControlsBlock : Frame
{
@@ -130,7 +131,7 @@ namespace qController
{
string workspace_prefix = "/workspace/" + qController.qWorkspace.workspace_id;
string command = workspace_prefix + ((QButton)sender).qCommand.osc;
qController.qClient.sendUDP(command);
qController.qClient.sendTCP(command);
}
}
}