Fix simulation setup

This commit is contained in:
2026-01-16 19:38:36 +01:00
parent b0484eedef
commit 6ef5e1a94c
2 changed files with 28 additions and 12 deletions
+3 -3
View File
@@ -140,7 +140,7 @@ int main(void)
.disk_size = 1<<20,
.platform = QUAKEY_LINUX,
};
quakey_spawn(quakey, config, "cs --addr 127.0.0.2");
quakey_spawn(quakey, config, "cli --server 127.0.0.3 8080");
}
// Metadata Server
@@ -155,7 +155,7 @@ int main(void)
.disk_size = 1<<20,
.platform = QUAKEY_LINUX,
};
quakey_spawn(quakey, config, "ms --addr 127.0.0.3");
quakey_spawn(quakey, config, "ms --addr 127.0.0.3 --port 8080");
}
// Chunk Server
@@ -170,7 +170,7 @@ int main(void)
.disk_size = 1<<20,
.platform = QUAKEY_LINUX,
};
quakey_spawn(quakey, config, "cs --addr 127.0.0.4");
quakey_spawn(quakey, config, "cs --addr 127.0.0.4 --port 8081 --remote-addr 127.0.0.3 --remote-port 8080");
}
while (simulation_running)