Make clear that server listens on all interfaces

This commit is contained in:
2026-05-04 14:36:34 +02:00
parent 6421ab300b
commit 53c5155078

View File

@@ -115,7 +115,7 @@ int main(int argc, char **argv)
return 1; return 1;
} }
printf("Server is running on http://localhost:%d\n", port); printf("Server is running on http://0.0.0.0:%d\n", port);
// Keep the server running // Keep the server running
getchar(); getchar();