BoTW-Multiplayer/C#/BOTWM.Tests/ServerShould.cs
2025-01-20 14:05:21 -06:00

27 lines
474 B
C#

using BOTWM.Server;
using System.Net;
using System.Net.Sockets;
namespace BOTWM.Tests
{
public class ServerShould
{
public ServerShould()
{
IPEndPoint íp = new IPEndPoint(IPAddress.Parse("25.79.17.118"), 5050);
Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
s.Connect(íp);
}
[Fact]
public void Test1()
{
}
}
}