summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-07-28 23:47:05 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-07-28 23:47:05 +0000
commit21e3c3a561d80a574f7d5b641752967518858a4e (patch)
tree7d62dde62c39041430a2be944aecfe0794cc8bd6 /apps
parent4bc6613648c863e6dab86cbc6b902ee5d44fbfac (diff)
play a beep tone into the spied-on channel if we are about to whisper to them
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38466 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_chanspy.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c
index c4dfb3488..3cd10e3c8 100644
--- a/apps/app_chanspy.c
+++ b/apps/app_chanspy.c
@@ -291,14 +291,27 @@ static int channel_spy(struct ast_channel *chan, struct ast_channel *spyee, int
return 0;
}
+ if (ast_test_flag(flags, OPTION_WHISPER)) {
+ struct ast_filestream *beepstream;
+
+ ast_channel_whisper_start(csth.spy.chan);
+ if ((beepstream = ast_openstream_full(chan, "beep", chan->language, 1))) {
+ struct ast_frame *f;
+
+ while ((f = ast_readframe(beepstream))) {
+ ast_channel_whisper_feed(csth.spy.chan, f);
+ ast_frfree(f);
+ }
+
+ ast_closestream(beepstream);
+ }
+ }
+
if (ast_test_flag(flags, OPTION_PRIVATE))
silgen = ast_channel_start_silence_generator(chan);
else
ast_activate_generator(chan, &spygen, &csth);
- if (ast_test_flag(flags, OPTION_WHISPER))
- ast_channel_whisper_start(csth.spy.chan);
-
/* We can no longer rely on 'spyee' being an actual channel;
it can be hung up and freed out from under us. However, the
channel destructor will put NULL into our csth.spy.chan