summaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
authorDavid Troy <dave@popvox.com>2006-04-07 20:55:51 +0000
committerDavid Troy <dave@popvox.com>2006-04-07 20:55:51 +0000
commit27aa7a3382cf0ed4973fa7e207d4ffc9733f69d5 (patch)
treef8a9824b3a235fa45ebe2724668881a73e9e59ae /src/config.c
parentce35268086acbc958c33e8b39e2440c7ed1d2592 (diff)
downloadastmanproxy-27aa7a3382cf0ed4973fa7e207d4ffc9733f69d5.tar.gz
astmanproxy-27aa7a3382cf0ed4973fa7e207d4ffc9733f69d5.tar.xz
astmanproxy-27aa7a3382cf0ed4973fa7e207d4ffc9733f69d5.zip
git-svn-id: http://svncommunity.digium.com/svn/astmanproxy/branches/1.20pre@94 f02b47b9-160a-0410-81a6-dc3441afb0ec
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index c8c9d80..f642aa6 100644
--- a/src/config.c
+++ b/src/config.c
@@ -107,6 +107,8 @@ void *processline(char *s) {
pc.clientwritetimeout = atoi(value);
else if (!strcmp(name,"sslclienthellotimeout") )
pc.sslclhellotimeout = atoi(value);
+ else if (!strcmp(name,"authrequired") )
+ pc.authrequired = strcmp(value,"yes") ? 0 : 1;
else if (!strcmp(name,"acceptencryptedconnection") )
pc.acceptencryptedconnection = strcmp(value,"yes") ? 0 : 1;
else if (!strcmp(name,"acceptunencryptedconnection") )