-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.config.dgd
48 lines (37 loc) · 1.8 KB
/
.config.dgd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
telnet_port = 5000; /* telnet port number */
binary_port = ([ "*":5001, "*":5002 ]); /* binary ports numbers */
/* base directory (MUST be absolute) */
directory = "/opt/mud/hexagon/mudlib";
users = 40; /* max # of users */
editors = 40; /* max # of editor sessions */
ed_tmpfile = "./tmp/ed"; /* proto editor tmpfile */
swap_file = "./tmp/swap"; /* swap file */
swap_size = 8192; /* # sectors in swap file */
sector_size = 512; /* swap sector size */
swap_fragment = 32; /* fragment to swap out */
static_chunk = 64512; /* static memory chunk */
dynamic_chunk = 261120; /* dynamic memory chunk */
dump_file = "./tmp/snapshot"; /* snapshot file */
dump_interval = 3600; /* snapshot interval in seconds */
/* if we are adding extensions, add them here */
/* modules = ([ "<absolute path to the compiled extension>" : "" ]); */
hotboot = ({ "../bin/dgd", /* hotboot binary */
"../bin/config.dgd", /* hotboot config file */
"./tmp/snapshot",
"./tmp/snapshot.old" });
/* highest level of typechecking */
typechecking = 2;
/* the next paths are relative to the previously defined 'directory' */
/* standard include file */
include_file = "/include/std.h";
/* directories to search */
include_dirs = ({ "/include" });
/* auto inherited object */
auto_object = "/lib/core/auto";
/* driver object */
driver_object = "/lib/core/driver";
/* name of create function */
create = "_auto_create";
array_size = 10000; /* max array size */
objects = 10000; /* max # of objects */
call_outs = 1000; /* max # of call_outs */