macos port but it actually works?

This commit is contained in:
Li 2022-10-04 15:40:09 +13:00
parent 78e08c2e63
commit 284cbf7e55

View file

@ -78,7 +78,7 @@ namespace MPN00BS
clientProcess.StartInfo.FileName = executable; clientProcess.StartInfo.FileName = executable;
#if defined(OS_LINUX) || defined(OS_MACOS) #if OS_LINUX || OS_MACOS
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString(); clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
#else #else
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString(); clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
@ -222,7 +222,7 @@ namespace MPN00BS
BaseDir = Path.Combine(hispFolder, "HISP", "N00BS"); BaseDir = Path.Combine(hispFolder, "HISP", "N00BS");
Directory.CreateDirectory(BaseDir); Directory.CreateDirectory(BaseDir);
#elif defined(OS_LINUX) || defined(OS_MACOS) #elif OS_LINUX || OS_MACOS
string hispFolder = Environment.GetEnvironmentVariable("HOME"); string hispFolder = Environment.GetEnvironmentVariable("HOME");
if (hispFolder == null) if (hispFolder == null)
return; return;
@ -237,7 +237,7 @@ namespace MPN00BS
try try
{ {
#if defined(OS_LINUX) || defined(OS_MACOS) #if OS_LINUX || OS_MACOS
cs = new ContentServer("127.0.0.1", 12322); cs = new ContentServer("127.0.0.1", 12322);
#else #else
cs = new ContentServer("127.0.0.1", 80); cs = new ContentServer("127.0.0.1", 80);