summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Troy <dave@popvox.com>2006-04-01 17:29:10 +0000
committerDavid Troy <dave@popvox.com>2006-04-01 17:29:10 +0000
commit7244c5ad9786e7bcab9eb44fe10e4f1b3df023dc (patch)
tree987569730336605d4802cdb7416e65b2a045cc19
parenta2957dba6e5f8c607a13a66b2489c0c2f41d31f5 (diff)
downloadastmanproxy-7244c5ad9786e7bcab9eb44fe10e4f1b3df023dc.tar.gz
astmanproxy-7244c5ad9786e7bcab9eb44fe10e4f1b3df023dc.tar.xz
astmanproxy-7244c5ad9786e7bcab9eb44fe10e4f1b3df023dc.zip
git-svn-id: http://svncommunity.digium.com/svn/astmanproxy/branches/1.20pre@45 f02b47b9-160a-0410-81a6-dc3441afb0ec
-rw-r--r--VERSIONS9
-rw-r--r--src/include/astmanproxy.h8
2 files changed, 11 insertions, 6 deletions
diff --git a/VERSIONS b/VERSIONS
index 8a29a2b..4f048ce 100644
--- a/VERSIONS
+++ b/VERSIONS
@@ -42,3 +42,12 @@
Added support for Mac OS X (Tested on 10.3.9); BSD may also work
Aborts on old config file format (detects incomplete server spec)
+1.20pre Now using ast_carefulwrite for non-blocking writes
+ Added asteriskwritetimeout config setting for asterisk write timeout
+ Added clientwritetimeout config setting for client write timeout
+ Added 'usessl' option for connecting to asterisk servers
+ Added support for astmanproxy.users user authentication (Steve Davies)
+ Added support for Action: Challenge/AuthType: MD5 authentication
+ Added challenge field to mansession structure for use by Action: Challenge
+ Added writetimeout var to mansession structure for use by ast_carefulwrite
+
diff --git a/src/include/astmanproxy.h b/src/include/astmanproxy.h
index 9bc103e..83dc1ba 100644
--- a/src/include/astmanproxy.h
+++ b/src/include/astmanproxy.h
@@ -98,12 +98,8 @@ struct mansession {
struct ast_server *server;
struct proxy_user user;
char actionid[MAX_LEN];
-
- /*! Authentication challenge */
- char challenge[10];
-
- /* Timeout for ast_carefulwrite() */
- int writetimeout;
+ char challenge[10]; /*! Authentication challenge */
+ int writetimeout; /* Timeout for ast_carefulwrite() */
struct mansession *next;
};