mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
MacOS port
This commit is contained in:
parent
d5e7c97633
commit
44f1d1bd79
1 changed files with 3 additions and 5 deletions
|
@ -78,9 +78,7 @@ namespace MPN00BS
|
|||
|
||||
clientProcess.StartInfo.FileName = executable;
|
||||
|
||||
#if OS_LINUX
|
||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||
#elif OS_MACOS
|
||||
#if defined(OS_LINUX) || defined(OS_MACOS)
|
||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||
#else
|
||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||
|
@ -224,7 +222,7 @@ namespace MPN00BS
|
|||
|
||||
BaseDir = Path.Combine(hispFolder, "HISP", "N00BS");
|
||||
Directory.CreateDirectory(BaseDir);
|
||||
#elif OS_LINUX
|
||||
#elif defined(OS_LINUX) || defined(OS_MACOS)
|
||||
string hispFolder = Environment.GetEnvironmentVariable("HOME");
|
||||
if (hispFolder == null)
|
||||
return;
|
||||
|
@ -239,7 +237,7 @@ namespace MPN00BS
|
|||
try
|
||||
{
|
||||
|
||||
#if OS_LINUX
|
||||
#if defined(OS_LINUX) || defined(OS_MACOS)
|
||||
cs = new ContentServer("127.0.0.1", 12322);
|
||||
#else
|
||||
cs = new ContentServer("127.0.0.1", 80);
|
||||
|
|
Loading…
Add table
Reference in a new issue