From e753b0564a73e43ee6caca9dac7fa9a19b5eac0a Mon Sep 17 00:00:00 2001 From: ddouthitt Date: Fri, 28 Sep 2001 14:23:41 +0000 Subject: [PATCH] Updated configuration file processing: * Options override all configuration file settings * In absence of configuration file settings or option settings, defaults are used * Added new global settings: Port, Bind, Wait, WaitTime, Debug * Added more documentation to LCDd.conf --- LCDd.conf | 29 ++++++++++++++++++--- server/main.c | 68 ++++++++++++++++++++++++++++++++++++++++++++++--- server/main.h | 1 + server/screen.c | 3 +-- 4 files changed, 92 insertions(+), 9 deletions(-) diff --git a/LCDd.conf b/LCDd.conf index ba207c9..6e94370 100644 --- a/LCDd.conf +++ b/LCDd.conf @@ -18,19 +18,42 @@ # # Before the driver sections, global settings can be set. # -# Currently there is only one global setting: +# Global settings are: # # Driver # # Use the specified driver. Second and further instances # of this command add input drivers to the server; -# output is only to the first driver. +# output is only to the first driver. The default driver +# to use is curses. +# +# Bind +# +# Bind to this address; defaults to 127.0.0.1 +# +# Port +# +# Listen on this specified port; defaults to 13666. +# +# Debug +# +# Debugging level; defaults to 0 (no debugging output). +# +# Wait