-
Notifications
You must be signed in to change notification settings - Fork 1
/
tunable.c
68 lines (54 loc) · 1.19 KB
/
tunable.c
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
tunable.c - Machine dependent (tunable) parametesafe.rs.
UltraRogue
Copyright (C) 1985 Herb Chong
All rights reserved.
See the file LICENSE.TXT for full copyright and licensing information.
*/
/*
* Wizard's identity.
*/
int UID = 97; /* his user id */
char LOGIN[] = "games"; /* his login name */
/*
* Special files.
*/
/*
* File containing uids of people considered authosafe.rs.
*/
char PERMOK[] = "permok";
/*
* File containing wizard's password and password key.
*/
char PASSCTL[] = "passctl";
/*
* File where news is kept
*/
char NEWS[] = "news";
/*
* Directory where the scores are stored.
*/
char SCOREDIR[] = "urogue_roll";
/*
* Location of lav program to print load averages
*/
char LOADAV_PROG[] = "";
/*
* Location of utmp
*/
char UTMP[] = "";
/*
* Name of player definitions file
*/
char ROGDEFS[] = ".rog_defs";
/*
* Name of pager routine for news and motd
*/
char PAGER[] = "/bin/cat";
/*
* Load control constants
*/
int MAXLOAD = 50; /* 10 * max 15 minute load average */
int MAXUSERS = 15; /* max users at start */
int HOLIDAY = 0; /* enable prime shift restrictions */
int CHECKTIME = 5; /* minutes between load checks */