add: syntax highlight & save file popup in pasm editor

This commit is contained in:
2024-08-25 18:37:19 +02:00
parent ac43486a82
commit 0f6963ee54
2 changed files with 96 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ namespace Server
public static int localport;
public static void ServerStart()
{
localip = Dns.GetHostEntry(Dns.GetHostName()).AddressList.FirstOrDefault(ip => ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork).ToString();
localip = "192.168.1.20";//Dns.GetHostEntry(Dns.GetHostName()).AddressList.FirstOrDefault(ip => ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork).ToString();
localport = 4444;
server = new TcpListener(System.Net.IPAddress.Parse(localip), localport);
server.Start();