Index: channels/chan_iax2.c =================================================================== --- channels/chan_iax2.c (revision 172062) +++ channels/chan_iax2.c (working copy) @@ -3720,6 +3720,9 @@ ast_moh_stop(c); goto done; } + case AST_CONTROL_SRCUPDATE: + ast_log(LOG_NOTICE, "PACKET STORM TESTING: send command from iax2_indicate.\n"); /* testing packet storm issue with SRCUPDATE and iax2 */ + } res = send_command(pvt, AST_FRAME_CONTROL, condition, 0, data, datalen, -1); Index: main/channel.c =================================================================== --- main/channel.c (revision 172062) +++ main/channel.c (working copy) @@ -3990,6 +3990,7 @@ ast_set_flag(c0, AST_FLAG_END_DTMF_ONLY); /* Before we enter in and bridge these two together tell them both the source of audio has changed */ + ast_log(LOG_NOTICE, "PACKET STORM TESTING: Bridging Connection. Sending srcupdate to both legs.\n"); /* testing packet storm issue with SRCUPDATE and iax2 */ ast_indicate(c0, AST_CONTROL_SRCUPDATE); ast_indicate(c1, AST_CONTROL_SRCUPDATE);