summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
};