Merge pull request #3 from julthomas/jth/config-transparent

MINOR: config: Option --transparent can be set via configuration file
This commit is contained in:
yrutschle 2013-08-30 02:52:24 -07:00
commit 22f4a4bc47
3 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@ verbose: false;
foreground: false;
inetd: false;
numeric: false;
transparent: false;
timeout: 2;
user: "nobody";
pidfile: "/var/run/sslh.pid";

View File

@ -7,6 +7,7 @@ verbose: true;
foreground: true;
inetd: false;
numeric: false;
transparent: false;
timeout: 2;
user: "nobody";
pidfile: "/var/run/sslh.pid";

View File

@ -270,6 +270,7 @@ static int config_parse(char *filename, struct addrinfo **listen, struct proto *
config_lookup_bool(&config, "inetd", &inetd);
config_lookup_bool(&config, "foreground", &foreground);
config_lookup_bool(&config, "numeric", &numeric);
config_lookup_bool(&config, "transparent", &transparent);
if (config_lookup_int(&config, "timeout", &timeout) == CONFIG_TRUE) {
probing_timeout = timeout;