summaryrefslogtreecommitdiffstats
path: root/socket_server.c
diff options
context:
space:
mode:
authorAndreas Eversberg2010-05-23 13:46:26 +0200
committerAndreas Eversberg2010-05-23 13:46:26 +0200
commitbe404a4926ba076c5e2019b88e790e3f14ff11ff (patch)
tree4c2ac7cae02f5def823ac7bbdad5661f3b20d95f /socket_server.c
parentFixed forwarding of sending-complete information. (diff)
downloadlcr-be404a4926ba076c5e2019b88e790e3f14ff11ff.tar.gz
lcr-be404a4926ba076c5e2019b88e790e3f14ff11ff.tar.xz
lcr-be404a4926ba076c5e2019b88e790e3f14ff11ff.zip
Added Progress messages. (receive only)
Diffstat (limited to 'socket_server.c')
-rw-r--r--socket_server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/socket_server.c b/socket_server.c
index 3083085..70895b0 100644
--- a/socket_server.c
+++ b/socket_server.c
@@ -538,7 +538,7 @@ int admin_call(struct admin_list *admin, struct admin_message *msg)
/*
* this function is called for response whenever a call state changes.
*/
-void admin_call_response(int adminid, int message, const char *connected, int cause, int location, int notify)
+void admin_call_response(int adminid, int message, const char *connected, int cause, int location, int notify_progress)
{
struct admin_list *admin;
struct admin_queue *response, **responsep; /* response pointer */
@@ -573,7 +573,7 @@ void admin_call_response(int adminid, int message, const char *connected, int ca
SCPY(response->am[0].u.call.callerid, connected);
response->am[0].u.call.cause = cause;
response->am[0].u.call.location = location;
- response->am[0].u.call.notify = notify;
+ response->am[0].u.call.notify_progress = notify_progress;
/* attach to response chain */
*responsep = response;