ast_channel_unlock(c);
sip_pvt_unlock(p->refer->refer_call);
sip_pvt_unlock(p);
- if (ast_do_masquerade(replacecall)) {
- ast_log(LOG_WARNING, "Failed to perform masquerade with INVITE replaces\n");
- }
+ ast_do_masquerade(replacecall);
ast_channel_lock(c);
if (earlyreplace || oneleggedreplace ) {
ast_channel_hangupcause_set(c, AST_CAUSE_SWITCH_CONGESTION);
* while the features are nice, the cost is very high in terms of pure nastiness. XXX
* \param chan Channel to masquerade
*/
-int ast_do_masquerade(struct ast_channel *chan);
+void ast_do_masquerade(struct ast_channel *chan);
/*!
* \brief Find bridged channel
* this function, it invalidates our channel container locking order. All channels
* must be unlocked before it is permissible to lock the channels' ao2 container.
*/
-int ast_do_masquerade(struct ast_channel *original)
+void ast_do_masquerade(struct ast_channel *original)
{
int x;
int origstate;
*/
ast_channel_unlock(original);
ao2_unlock(channels);
- return 0;
+ return;
}
/* Bump the refs to ensure that they won't dissapear on us. */
/* Release our held safety references. */
ast_channel_unref(original);
ast_channel_unref(clonechan);
-
- return 0;
}
void ast_set_callerid(struct ast_channel *chan, const char *cid_num, const char *cid_name, const char *cid_ani)