Skip to content
Snippets Groups Projects
Commit 38b87ec4 authored by Olle Johansson's avatar Olle Johansson
Browse files

Signal HOLD status to phones that subscribe for status.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@53067 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e88dda8c
No related branches found
No related tags found
No related merge requests found
...@@ -6965,6 +6965,10 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full, int tim ...@@ -6965,6 +6965,10 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full, int tim
pidfnote = "Unavailable"; pidfnote = "Unavailable";
break; break;
case AST_EXTENSION_ONHOLD: case AST_EXTENSION_ONHOLD:
statestring = "confirmed";
local_state = NOTIFY_INUSE;
pidfstate = "busy";
pidfnote = "On hold";
break; break;
case AST_EXTENSION_NOT_INUSE: case AST_EXTENSION_NOT_INUSE:
default: default:
...@@ -7060,6 +7064,11 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full, int tim ...@@ -7060,6 +7064,11 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full, int tim
else else
ast_build_string(&t, &maxbytes, "<dialog id=\"%s\">\n", p->exten); ast_build_string(&t, &maxbytes, "<dialog id=\"%s\">\n", p->exten);
ast_build_string(&t, &maxbytes, "<state>%s</state>\n", statestring); ast_build_string(&t, &maxbytes, "<state>%s</state>\n", statestring);
if (state == AST_EXTENSION_ONHOLD) {
ast_build_string(&t, &maxbytes, "<local>\n<target uri=\"%s\">\n"
"<param pname=\"+sip.rendering\" pvalue=\"no\">\n"
"</target>\n</local>\n", mto);
}
ast_build_string(&t, &maxbytes, "</dialog>\n</dialog-info>\n"); ast_build_string(&t, &maxbytes, "</dialog>\n</dialog-info>\n");
break; break;
case NONE: case NONE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment