All Projects → sublee → unity-cosocket

sublee / unity-cosocket

Licence: other
Sockets for Unity3D coroutine

Programming Languages

C#
18002 projects

unity-cosocket

Sockets for Unity3D coroutine.

Cosocket sock = new Cosocket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
yield return StartCoroutine(sock.Connect(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 8999)));
yield return StartCoroutine(sock.Send(new ASCIIEncoding().GetBytes("Hello, world")));
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].