projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f14004a
)
Don't send until we're up
author
Mark Spencer
<markster@digium.com>
Sat, 30 Aug 2003 00:48:37 +0000
(
00:48
+0000)
committer
Mark Spencer
<markster@digium.com>
Sat, 30 Aug 2003 00:48:37 +0000
(
00:48
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1447
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_iax2.c
patch
|
blob
|
history
diff --git
a/channels/chan_iax2.c
b/channels/chan_iax2.c
index
fb0e683
..
81ee39d
100755
(executable)
--- a/
channels/chan_iax2.c
+++ b/
channels/chan_iax2.c
@@
-2551,6
+2551,8
@@
static int iax2_write(struct ast_channel *c, struct ast_frame *f)
/* If we're quelching voice, don't bother sending it */
if ((f->frametype == AST_FRAME_VOICE) && i->quelch)
return 0;
+ if (!(i->state & IAX_STATE_STARTED))
+ return 0;
/* Simple, just queue for transmission */
return iax2_send(i, f, 0, -1, 0, 0, 0);
}