summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Troy <dave@popvox.com>2006-04-01 17:15:48 +0000
committerDavid Troy <dave@popvox.com>2006-04-01 17:15:48 +0000
commitb71a2d9e1496477cbfd2b750ff48c50b65a19a75 (patch)
tree934c1d63fc26113cd6a0676801d3f536ea6d87b8
parent8d71d312a9a49a1d81088d27d7d7c0fae9f2e2f2 (diff)
downloadastmanproxy-b71a2d9e1496477cbfd2b750ff48c50b65a19a75.tar.gz
astmanproxy-b71a2d9e1496477cbfd2b750ff48c50b65a19a75.tar.xz
astmanproxy-b71a2d9e1496477cbfd2b750ff48c50b65a19a75.zip
git-svn-id: http://svncommunity.digium.com/svn/astmanproxy/branches/1.20pre@42 f02b47b9-160a-0410-81a6-dc3441afb0ec
-rw-r--r--src/config.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index bfb8d1f..50b0896 100644
--- a/src/config.c
+++ b/src/config.c
@@ -95,6 +95,10 @@ void *processline(char *s) {
strcpy(pc.listen_addr, value);
else if (!strcmp(name,"listenport") )
pc.listen_port = atoi(value);
+ else if (!strcmp(name,"asteriskwritetimeout") )
+ pc.asteriskwritetimeout = atoi(value);
+ else if (!strcmp(name,"clientwritetimeout") )
+ pc.clientwritetimeout = atoi(value);
else if (!strcmp(name,"proxykey") )
strcpy(pc.key, value);
else if (!strcmp(name,"proc_user") )