aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-23 18:59:28 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-23 18:59:28 +0000
commit6254f6c03a1789c9d3988108d6e3edb83546a243 (patch)
tree99686606eb237d5d5a93d89cf44be82bc4a14e40 /channels
parent2e12b63fa2e8065f6e7c217a8a2124cbfeb20c39 (diff)
Fix some incorrect softkey labels in messages.
Don't try to play dialtone in some unimplemented features. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@76656 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_skinny.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c
index 2804bcd53..3c1530c64 100644
--- a/channels/chan_skinny.c
+++ b/channels/chan_skinny.c
@@ -3185,13 +3185,11 @@ static int handle_stimulus_message(struct skinny_req *req, struct skinnysession
case STIMULUS_TRANSFER:
if (skinnydebug)
ast_verbose("Received Stimulus: Transfer(%d)\n", instance);
- transmit_tone(s, SKINNY_DIALTONE);
/* XXX figure out how to transfer */
break;
case STIMULUS_CONFERENCE:
if (skinnydebug)
ast_verbose("Received Stimulus: Conference(%d)\n", instance);
- transmit_tone(s, SKINNY_DIALTONE);
/* XXX determine the best way to pull off a conference. Meetme? */
break;
case STIMULUS_VOICEMAIL:
@@ -3211,7 +3209,6 @@ static int handle_stimulus_message(struct skinny_req *req, struct skinnysession
/* Because it's the same thing. */
/* Do not disturb */
- transmit_tone(s, SKINNY_DIALTONE);
if (l->dnd != 0){
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Disabling DND on %s@%s\n", l->name, d->name);
@@ -3956,7 +3953,6 @@ static int handle_soft_key_event_message(struct skinny_req *req, struct skinnyse
case SOFTKEY_TRNSFER:
if (skinnydebug)
ast_verbose("Received Softkey Event: Transfer(%d)\n", instance);
- transmit_tone(s, SKINNY_DIALTONE);
/* XXX figure out how to transfer */
break;
case SOFTKEY_CFWDALL:
@@ -4065,8 +4061,7 @@ static int handle_soft_key_event_message(struct skinny_req *req, struct skinnyse
break;
case SOFTKEY_CONFRN:
if (skinnydebug)
- ast_verbose("Received Softkey Event: Transfer(%d)\n", instance);
- transmit_tone(s, SKINNY_DIALTONE);
+ ast_verbose("Received Softkey Event: Conference(%d)\n", instance);
/* XXX determine the best way to pull off a conference. Meetme? */
break;
case SOFTKEY_PARK:
@@ -4085,11 +4080,11 @@ static int handle_soft_key_event_message(struct skinny_req *req, struct skinnyse
break;
case SOFTKEY_PICKUP:
if (skinnydebug)
- ast_verbose("Received Softkey Event: None(%d)\n", instance);
+ ast_verbose("Received Softkey Event: Pickup(%d)\n", instance);
break;
case SOFTKEY_GPICKUP:
if (skinnydebug)
- ast_verbose("Received Softkey Event: Group Pickup (%d)\n", instance);
+ ast_verbose("Received Softkey Event: Group Pickup(%d)\n", instance);
break;
default:
if (skinnydebug)