This commit is contained in:
parent
80a99561d0
commit
da48901dd0
6
server.d
6
server.d
|
@ -42,9 +42,6 @@ version(OSX) version = useXDG;
|
||||||
|
|
||||||
int main(string[] args)
|
int main(string[] args)
|
||||||
{
|
{
|
||||||
// No relative paths
|
|
||||||
version (Posix) chdir("/");
|
|
||||||
|
|
||||||
ushort port = 9166;
|
ushort port = 9166;
|
||||||
bool help;
|
bool help;
|
||||||
string[] importPaths;
|
string[] importPaths;
|
||||||
|
@ -87,6 +84,9 @@ int main(string[] args)
|
||||||
|
|
||||||
ubyte[] buffer = new ubyte[1024 * 1024 * 4]; // 4 megabytes should be enough for anybody...
|
ubyte[] buffer = new ubyte[1024 * 1024 * 4]; // 4 megabytes should be enough for anybody...
|
||||||
|
|
||||||
|
// No relative paths
|
||||||
|
version (Posix) chdir("/");
|
||||||
|
|
||||||
writeln("Startup complete");
|
writeln("Startup complete");
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
|
|
Loading…
Reference in New Issue