mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-18 21:54:17 +00:00
fix dependcy versions: iOS building
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Serilog;
|
||||
using TcpSharp.Events;
|
||||
using TcpSharp;
|
||||
|
||||
namespace SharpOSC
|
||||
{
|
||||
@@ -35,7 +34,7 @@ namespace SharpOSC
|
||||
|
||||
string _address;
|
||||
|
||||
TcpSharp.TcpSharpSocketClient tcpClient;
|
||||
TcpSharpSocketClient tcpClient;
|
||||
|
||||
private List<byte> frameStream = new List<byte>();
|
||||
|
||||
@@ -50,7 +49,7 @@ namespace SharpOSC
|
||||
|
||||
try
|
||||
{
|
||||
tcpClient = new TcpSharp.TcpSharpSocketClient(Address, Port);
|
||||
tcpClient = new TcpSharpSocketClient(Address, Port);
|
||||
tcpClient.OnConnected += ClientConnected;
|
||||
tcpClient.OnDataReceived += DataReceived;
|
||||
tcpClient.OnDisconnected += ClientDisconneted;
|
||||
|
||||
Reference in New Issue
Block a user