aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-14 19:09:58 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-14 19:09:58 +0000
commit37a1b7289e02a794269bf1ab248da152d4c80648 (patch)
treecc7d14cc7c672fabb580671608355064ac526213 /param.ccl
parent68d3b18fee8e7331fd47f85b396a0fe25634e0d6 (diff)
Initial version of C http thorn. There are still a fair number of things on
my to-do list, but it is fairly usable now as far as functionality is concerned. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@2 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl29
1 files changed, 29 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
new file mode 100644
index 0000000..56579d1
--- /dev/null
+++ b/param.ccl
@@ -0,0 +1,29 @@
+# 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"
+ \ No newline at end of file