|
|
1 telnet_port = 6047; /* telnet port number */
2 binary_port = 6048; /* binary port number */
3 directory = "/home/dworkin/dgd/mud";/* base directory (MUST be absolute) */
4 users = 40; /* max # of users */
5 editors = 40; /* max # of editor sessions */
6 ed_tmpfile = "../tmp/ed"; /* proto editor tmpfile */
7 swap_file = "../tmp/swap"; /* swap file */
8 swap_size = 1024; /* # sectors in swap file */
9 cache_size = 50; /* # sectors in swap cache */
10 sector_size = 512; /* swap sector size */
11 swap_fragment = 32; /* fragment to swap out */
12 static_chunk = 64512; /* static memory chunk */
13 dynamic_chunk = 261120; /* dynamic memory chunk */
14 dump_file = "../dump"; /* dump file */
15
16 typechecking = 2; /* highest level of typechecking */
17 include_file = "/include/std.h"; /* standard include file */
18 include_dirs = ({ "/include", "~/include" }); /* directories to search */
19 auto_object = "/kernel/lib/auto"; /* auto inherited object */
20 driver_object = "/kernel/sys/driver"; /* driver object */
21 create = "_F_create"; /* name of create function */
22
23 array_size = 1000; /* max array size */
24 objects = 500; /* max # of objects */
25 call_outs = 100; /* max # of call_outs */
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.