aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 066b1109168c13745b238c3ef342caae33df3562 (plain)
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
# Parameter definitions for thorn httpd
# $Header$

private:

INT port "HTTP port number"
{
    1:65535 :: "Any valid port"
} 5555

INT queue_length "Listen queue length"
{
    1:      :: "Any positive number"
}  4

INT timeout_seconds "Polling timeout seconds"
{
    0:      :: "Any whole number"
} 0

INT timeout_useconds "Polling timeout micro-seconds"
{
    0:      :: "Any whole number"
} 0

BOOLEAN standalone "Should the server poll continuously in startup"
{
} "no"
 
BOOLEAN provide_pages "Should the server provide any pages ?"
{
} "yes"