mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-27 08:06:25 +00:00
27 lines
474 B
C#
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()
|
|
{
|
|
|
|
|
|
|
|
}
|
|
}
|
|
} |